pub struct CorpusMetadata {
pub backend: Option<i32>,
pub name: Option<String>,
pub landing_url: Option<String>,
pub library_name: Option<String>,
pub recs_widget_url: Option<String>,
pub shop_name: Option<String>,
}Fields§
§backend: Option<i32>§name: Option<String>§landing_url: Option<String>§library_name: Option<String>§recs_widget_url: Option<String>§shop_name: Option<String>Implementations§
Source§impl CorpusMetadata
impl CorpusMetadata
Sourcepub fn backend(&self) -> i32
pub fn backend(&self) -> i32
Returns the value of backend, or the default value if backend is unset.
Sourcepub fn landing_url(&self) -> &str
pub fn landing_url(&self) -> &str
Returns the value of landing_url, or the default value if landing_url is unset.
Sourcepub fn library_name(&self) -> &str
pub fn library_name(&self) -> &str
Returns the value of library_name, or the default value if library_name is unset.
Sourcepub fn recs_widget_url(&self) -> &str
pub fn recs_widget_url(&self) -> &str
Returns the value of recs_widget_url, or the default value if recs_widget_url is unset.
Trait Implementations§
Source§impl Clone for CorpusMetadata
impl Clone for CorpusMetadata
Source§fn clone(&self) -> CorpusMetadata
fn clone(&self) -> CorpusMetadata
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for CorpusMetadata
impl Debug for CorpusMetadata
Source§impl Default for CorpusMetadata
impl Default for CorpusMetadata
Source§impl Message for CorpusMetadata
impl Message for CorpusMetadata
Source§fn encoded_len(&self) -> usize
fn encoded_len(&self) -> usize
Returns the encoded length of the message without a length delimiter.
Source§fn encode(&self, buf: &mut impl BufMut) -> Result<(), EncodeError>where
Self: Sized,
fn encode(&self, buf: &mut impl BufMut) -> Result<(), EncodeError>where
Self: Sized,
Encodes the message to a buffer. Read more
Source§fn encode_to_vec(&self) -> Vec<u8> ⓘwhere
Self: Sized,
fn encode_to_vec(&self) -> Vec<u8> ⓘwhere
Self: Sized,
Encodes the message to a newly allocated buffer.
Source§fn encode_length_delimited(
&self,
buf: &mut impl BufMut,
) -> Result<(), EncodeError>where
Self: Sized,
fn encode_length_delimited(
&self,
buf: &mut impl BufMut,
) -> Result<(), EncodeError>where
Self: Sized,
Encodes the message with a length-delimiter to a buffer. Read more
Source§fn encode_length_delimited_to_vec(&self) -> Vec<u8> ⓘwhere
Self: Sized,
fn encode_length_delimited_to_vec(&self) -> Vec<u8> ⓘwhere
Self: Sized,
Encodes the message with a length-delimiter to a newly allocated buffer.
Source§fn decode(buf: impl Buf) -> Result<Self, DecodeError>where
Self: Default,
fn decode(buf: impl Buf) -> Result<Self, DecodeError>where
Self: Default,
Decodes an instance of the message from a buffer. Read more
Source§fn decode_length_delimited(buf: impl Buf) -> Result<Self, DecodeError>where
Self: Default,
fn decode_length_delimited(buf: impl Buf) -> Result<Self, DecodeError>where
Self: Default,
Decodes a length-delimited instance of the message from the buffer.
Source§fn merge(&mut self, buf: impl Buf) -> Result<(), DecodeError>where
Self: Sized,
fn merge(&mut self, buf: impl Buf) -> Result<(), DecodeError>where
Self: Sized,
Decodes an instance of the message from a buffer, and merges it into
self. Read moreSource§fn merge_length_delimited(&mut self, buf: impl Buf) -> Result<(), DecodeError>where
Self: Sized,
fn merge_length_delimited(&mut self, buf: impl Buf) -> Result<(), DecodeError>where
Self: Sized,
Decodes a length-delimited instance of the message from buffer, and
merges it into
self.Source§impl PartialEq for CorpusMetadata
impl PartialEq for CorpusMetadata
impl StructuralPartialEq for CorpusMetadata
Auto Trait Implementations§
impl Freeze for CorpusMetadata
impl RefUnwindSafe for CorpusMetadata
impl Send for CorpusMetadata
impl Sync for CorpusMetadata
impl Unpin for CorpusMetadata
impl UnwindSafe for CorpusMetadata
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more