pub struct InviteScheduleCombined {
pub open_ended_recurrence: Option<bool>,
pub since: Option<String>,
pub until: Option<String>,
}Expand description
InviteScheduleCombined
JSON schema
{
"type": "object",
"properties": {
"open_ended_recurrence": {
"type": "boolean"
},
"since": {
"type": [
"string",
"null"
]
},
"until": {
"type": [
"string",
"null"
]
}
}
}Fields§
§open_ended_recurrence: Option<bool>§since: Option<String>§until: Option<String>Trait Implementations§
Source§impl Clone for InviteScheduleCombined
impl Clone for InviteScheduleCombined
Source§fn clone(&self) -> InviteScheduleCombined
fn clone(&self) -> InviteScheduleCombined
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 InviteScheduleCombined
impl Debug for InviteScheduleCombined
Source§impl Default for InviteScheduleCombined
impl Default for InviteScheduleCombined
Source§impl<'de> Deserialize<'de> for InviteScheduleCombined
impl<'de> Deserialize<'de> for InviteScheduleCombined
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
Auto Trait Implementations§
impl Freeze for InviteScheduleCombined
impl RefUnwindSafe for InviteScheduleCombined
impl Send for InviteScheduleCombined
impl Sync for InviteScheduleCombined
impl Unpin for InviteScheduleCombined
impl UnsafeUnpin for InviteScheduleCombined
impl UnwindSafe for InviteScheduleCombined
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