pub struct GoogleTypeDate {
pub day: Option<i32>,
pub month: Option<i32>,
pub year: Option<i32>,
}Expand description
引用日期。
Fields§
§day: Option<i32>§month: Option<i32>§year: Option<i32>Trait Implementations§
Source§impl Clone for GoogleTypeDate
impl Clone for GoogleTypeDate
Source§fn clone(&self) -> GoogleTypeDate
fn clone(&self) -> GoogleTypeDate
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 GoogleTypeDate
impl Debug for GoogleTypeDate
Source§impl<'de> Deserialize<'de> for GoogleTypeDate
impl<'de> Deserialize<'de> for GoogleTypeDate
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
Auto Trait Implementations§
impl Freeze for GoogleTypeDate
impl RefUnwindSafe for GoogleTypeDate
impl Send for GoogleTypeDate
impl Sync for GoogleTypeDate
impl Unpin for GoogleTypeDate
impl UnsafeUnpin for GoogleTypeDate
impl UnwindSafe for GoogleTypeDate
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