#[non_exhaustive]pub struct SchedulingAddress {
pub at_type: Option<String>,
pub uri: String,
pub contexts: Option<HashMap<String, bool>>,
pub pref: Option<u32>,
pub label: Option<String>,
pub extra: Map<String, Value>,
}Expand description
An iTIP scheduling address (RFC 9553 §2.4.2).
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.at_type: Option<String>Object type discriminator; SHOULD be "SchedulingAddress" when present per RFC 9553 §1.3.4 (may be omitted in defaultType positions).
uri: StringThe scheduling URI (RFC 3986).
contexts: Option<HashMap<String, bool>>Contexts in which to use the scheduling address (key → true).
pref: Option<u32>Preference order in 1..=100 (lower = more preferred).
label: Option<String>Custom label for the value.
extra: Map<String, Value>Catch-all for vendor / site / private extension fields not covered by the typed fields above. Preserves unknown fields across deserialize/serialize round-trip per workspace extras-preservation policy (see workspace AGENTS.md).
Trait Implementations§
Source§impl Clone for SchedulingAddress
impl Clone for SchedulingAddress
Source§fn clone(&self) -> SchedulingAddress
fn clone(&self) -> SchedulingAddress
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 SchedulingAddress
impl Debug for SchedulingAddress
Source§impl<'de> Deserialize<'de> for SchedulingAddress
impl<'de> Deserialize<'de> for SchedulingAddress
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
impl Eq for SchedulingAddress
Source§impl PartialEq for SchedulingAddress
impl PartialEq for SchedulingAddress
Source§fn eq(&self, other: &SchedulingAddress) -> bool
fn eq(&self, other: &SchedulingAddress) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for SchedulingAddress
impl Serialize for SchedulingAddress
impl StructuralPartialEq for SchedulingAddress
Auto Trait Implementations§
impl Freeze for SchedulingAddress
impl RefUnwindSafe for SchedulingAddress
impl Send for SchedulingAddress
impl Sync for SchedulingAddress
impl Unpin for SchedulingAddress
impl UnsafeUnpin for SchedulingAddress
impl UnwindSafe for SchedulingAddress
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