pub struct CallData {
pub meta_data: Option<Box<CallBasicData>>,
pub context: Option<Vec<CallContextDto>>,
pub parties: Option<Vec<Party>>,
pub content: Option<Box<ContentDto>>,
pub interaction: Option<Box<InteractionMeasuresDto>>,
pub collaboration: Option<Box<CollaborationDto>>,
pub media: Option<Box<MediaDto>>,
}Expand description
CallData : A list with one entry per call.
Fields§
§meta_data: Option<Box<CallBasicData>>§context: Option<Vec<CallContextDto>>A list of the agenda of each part of the call.
parties: Option<Vec<Party>>A list of the call’s participants
content: Option<Box<ContentDto>>§interaction: Option<Box<InteractionMeasuresDto>>§collaboration: Option<Box<CollaborationDto>>§media: Option<Box<MediaDto>>Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for CallData
impl<'de> Deserialize<'de> for CallData
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 StructuralPartialEq for CallData
Auto Trait Implementations§
impl Freeze for CallData
impl RefUnwindSafe for CallData
impl Send for CallData
impl Sync for CallData
impl Unpin for CallData
impl UnsafeUnpin for CallData
impl UnwindSafe for CallData
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