pub struct CalendarGroup {
pub name: String,
pub class_id: String,
pub change_key: String,
pub calendars: Vec<Calendar>,
}
Fields§
§name: String
§class_id: String
§change_key: String
§calendars: Vec<Calendar>
Trait Implementations§
Source§impl Clone for CalendarGroup
impl Clone for CalendarGroup
Source§fn clone(&self) -> CalendarGroup
fn clone(&self) -> CalendarGroup
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 CalendarGroup
impl Debug for CalendarGroup
Source§impl<'de> Deserialize<'de> for CalendarGroup
impl<'de> Deserialize<'de> for CalendarGroup
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 PartialEq for CalendarGroup
impl PartialEq for CalendarGroup
Source§impl Serialize for CalendarGroup
impl Serialize for CalendarGroup
impl Eq for CalendarGroup
impl StructuralPartialEq for CalendarGroup
Auto Trait Implementations§
impl Freeze for CalendarGroup
impl RefUnwindSafe for CalendarGroup
impl Send for CalendarGroup
impl Sync for CalendarGroup
impl Unpin for CalendarGroup
impl UnwindSafe for CalendarGroup
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