pub struct Recording {
pub id: String,
pub room_id: Option<String>,
pub file: Option<RecordingFile>,
pub webhook: Option<WebhookDeliverySummary>,
pub start: Option<String>,
pub end: Option<String>,
pub links: ResourceLinks,
pub extra: Map<String, Value>,
}Expand description
A composited room recording.
Fields§
§id: StringThe recording id.
room_id: Option<String>The room that was recorded.
file: Option<RecordingFile>The produced file.
webhook: Option<WebhookDeliverySummary>A summary of the webhook deliveries for this recording.
start: Option<String>When the recording started.
end: Option<String>When the recording ended, or None if it is still running.
links: ResourceLinksHATEOAS-style links to related resources.
extra: Map<String, Value>Any fields the server returned that this SDK does not model yet.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Recording
impl<'de> Deserialize<'de> for Recording
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 Recording
impl RefUnwindSafe for Recording
impl Send for Recording
impl Sync for Recording
impl Unpin for Recording
impl UnsafeUnpin for Recording
impl UnwindSafe for Recording
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