pub struct Events {
pub dtsart: DateTime<Utc>,
pub dtend: DateTime<Utc>,
pub dtstamp: DateTime<Utc>,
pub uid: String,
pub created: DateTime<Utc>,
pub description: String,
pub last_modified: DateTime<Utc>,
pub location: String,
pub sequence: u32,
pub status: String,
pub summary: String,
pub transp: String,
}Expand description
store all events from iCalendar.
Fields§
§dtsart: DateTime<Utc>§dtend: DateTime<Utc>§dtstamp: DateTime<Utc>§uid: String§created: DateTime<Utc>§description: String§last_modified: DateTime<Utc>§location: String§sequence: u32§status: String§summary: String§transp: StringImplementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Events
impl RefUnwindSafe for Events
impl Send for Events
impl Sync for Events
impl Unpin for Events
impl UnwindSafe for Events
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more