pub struct GoogleCalendarEntry {
pub id: String,
pub summary: String,
pub primary: Option<bool>,
}Fields§
§id: String§summary: String§primary: Option<bool>Implementations§
Source§impl GoogleCalendarEntry
impl GoogleCalendarEntry
pub fn new(id: String, summary: String) -> GoogleCalendarEntry
Trait Implementations§
Source§impl Clone for GoogleCalendarEntry
impl Clone for GoogleCalendarEntry
Source§fn clone(&self) -> GoogleCalendarEntry
fn clone(&self) -> GoogleCalendarEntry
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 GoogleCalendarEntry
impl Debug for GoogleCalendarEntry
Source§impl Default for GoogleCalendarEntry
impl Default for GoogleCalendarEntry
Source§fn default() -> GoogleCalendarEntry
fn default() -> GoogleCalendarEntry
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GoogleCalendarEntry
impl<'de> Deserialize<'de> for GoogleCalendarEntry
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 GoogleCalendarEntry
impl PartialEq for GoogleCalendarEntry
Source§impl Serialize for GoogleCalendarEntry
impl Serialize for GoogleCalendarEntry
impl StructuralPartialEq for GoogleCalendarEntry
Auto Trait Implementations§
impl Freeze for GoogleCalendarEntry
impl RefUnwindSafe for GoogleCalendarEntry
impl Send for GoogleCalendarEntry
impl Sync for GoogleCalendarEntry
impl Unpin for GoogleCalendarEntry
impl UnsafeUnpin for GoogleCalendarEntry
impl UnwindSafe for GoogleCalendarEntry
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