pub struct AuthenticityVerificationProgram {
pub description: Option<String>,
pub terms_web_url: Option<String>,
}Expand description
AuthenticityVerificationProgram : A type that identifies whether the item is from a verified seller.
Fields§
§description: Option<String>An indication that the item is from a verified seller.
terms_web_url: Option<String>The URL to the Authenticity Verification program terms of use.
Implementations§
Source§impl AuthenticityVerificationProgram
impl AuthenticityVerificationProgram
Sourcepub fn new() -> AuthenticityVerificationProgram
pub fn new() -> AuthenticityVerificationProgram
A type that identifies whether the item is from a verified seller.
Trait Implementations§
Source§impl Clone for AuthenticityVerificationProgram
impl Clone for AuthenticityVerificationProgram
Source§fn clone(&self) -> AuthenticityVerificationProgram
fn clone(&self) -> AuthenticityVerificationProgram
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Default for AuthenticityVerificationProgram
impl Default for AuthenticityVerificationProgram
Source§fn default() -> AuthenticityVerificationProgram
fn default() -> AuthenticityVerificationProgram
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AuthenticityVerificationProgram
impl<'de> Deserialize<'de> for AuthenticityVerificationProgram
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<AuthenticityVerificationProgram, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<AuthenticityVerificationProgram, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Serialize for AuthenticityVerificationProgram
impl Serialize for AuthenticityVerificationProgram
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl StructuralPartialEq for AuthenticityVerificationProgram
Auto Trait Implementations§
impl Freeze for AuthenticityVerificationProgram
impl RefUnwindSafe for AuthenticityVerificationProgram
impl Send for AuthenticityVerificationProgram
impl Sync for AuthenticityVerificationProgram
impl Unpin for AuthenticityVerificationProgram
impl UnsafeUnpin for AuthenticityVerificationProgram
impl UnwindSafe for AuthenticityVerificationProgram
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