pub struct ListCalendar {
pub today: Option<Today>,
pub data: Option<Vec<Calendar>>,
}Fields§
§today: Option<Today>§data: Option<Vec<Calendar>>Trait Implementations§
Source§impl Clone for ListCalendar
impl Clone for ListCalendar
Source§fn clone(&self) -> ListCalendar
fn clone(&self) -> ListCalendar
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 Debug for ListCalendar
impl Debug for ListCalendar
Source§impl<'de> Deserialize<'de> for ListCalendar
impl<'de> Deserialize<'de> for ListCalendar
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 ListCalendar
impl RefUnwindSafe for ListCalendar
impl Send for ListCalendar
impl Sync for ListCalendar
impl Unpin for ListCalendar
impl UnsafeUnpin for ListCalendar
impl UnwindSafe for ListCalendar
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