pub struct IcalUIDProperty(pub String, pub ContentLineParams);Tuple Fields§
§0: String§1: ContentLineParamsTrait Implementations§
Source§impl Clone for IcalUIDProperty
impl Clone for IcalUIDProperty
Source§fn clone(&self) -> IcalUIDProperty
fn clone(&self) -> IcalUIDProperty
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 IcalUIDProperty
impl Debug for IcalUIDProperty
Source§impl From<(String, ContentLineParams)> for IcalUIDProperty
impl From<(String, ContentLineParams)> for IcalUIDProperty
Source§fn from(value: (String, ContentLineParams)) -> Self
fn from(value: (String, ContentLineParams)) -> Self
Converts to this type from the input type.
Source§impl From<IcalUIDProperty> for ContentLine
impl From<IcalUIDProperty> for ContentLine
Source§fn from(prop: IcalUIDProperty) -> Self
fn from(prop: IcalUIDProperty) -> Self
Converts to this type from the input type.
Source§impl From<String> for IcalUIDProperty
impl From<String> for IcalUIDProperty
Source§impl ICalProperty for IcalUIDProperty
impl ICalProperty for IcalUIDProperty
const NAME: &'static str = "UID"
const DEFAULT_TYPE: &'static str = "TEXT"
fn parse_prop( prop: &ContentLine, timezones: Option<&HashMap<String, Option<Tz>>>, ) -> Result<Self, ParserError>
fn utc_or_local(self) -> Self
Source§impl PartialEq for IcalUIDProperty
impl PartialEq for IcalUIDProperty
impl Eq for IcalUIDProperty
impl StructuralPartialEq for IcalUIDProperty
Auto Trait Implementations§
impl Freeze for IcalUIDProperty
impl RefUnwindSafe for IcalUIDProperty
impl Send for IcalUIDProperty
impl Sync for IcalUIDProperty
impl Unpin for IcalUIDProperty
impl UnwindSafe for IcalUIDProperty
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