Struct google_youtube3::api::PropertyValue
source · pub struct PropertyValue {
pub property: Option<String>,
pub value: Option<String>,
}
Expand description
A pair Property / Value.
This type is not used in any activity, and only used as part of another schema.
Fields§
§property: Option<String>
A property.
value: Option<String>
The property’s value.
Trait Implementations§
source§impl Clone for PropertyValue
impl Clone for PropertyValue
source§fn clone(&self) -> PropertyValue
fn clone(&self) -> PropertyValue
Returns a copy 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 PropertyValue
impl Debug for PropertyValue
source§impl Default for PropertyValue
impl Default for PropertyValue
source§fn default() -> PropertyValue
fn default() -> PropertyValue
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for PropertyValue
impl<'de> Deserialize<'de> for PropertyValue
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl Serialize for PropertyValue
impl Serialize for PropertyValue
impl Part for PropertyValue
Auto Trait Implementations§
impl RefUnwindSafe for PropertyValue
impl Send for PropertyValue
impl Sync for PropertyValue
impl Unpin for PropertyValue
impl UnwindSafe for PropertyValue
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