pub struct UploadStreamPreviewImage {
pub stream_key: String,
pub channel_id: Id<ChannelMarker>,
pub thumbnail: String,
pub content_type: Option<String>,
}Fields§
§stream_key: String§channel_id: Id<ChannelMarker>§thumbnail: StringBase64-encoded thumbnail image data.
content_type: Option<String>The MIME type of the thumbnail image.
Implementations§
Source§impl UploadStreamPreviewImage
impl UploadStreamPreviewImage
Sourcepub fn builder() -> UploadStreamPreviewImageBuilder
pub fn builder() -> UploadStreamPreviewImageBuilder
Create an instance of UploadStreamPreviewImage using the builder syntax
Trait Implementations§
Source§impl Clone for UploadStreamPreviewImage
impl Clone for UploadStreamPreviewImage
Source§fn clone(&self) -> UploadStreamPreviewImage
fn clone(&self) -> UploadStreamPreviewImage
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 UploadStreamPreviewImage
impl Debug for UploadStreamPreviewImage
Auto Trait Implementations§
impl Freeze for UploadStreamPreviewImage
impl RefUnwindSafe for UploadStreamPreviewImage
impl Send for UploadStreamPreviewImage
impl Sync for UploadStreamPreviewImage
impl Unpin for UploadStreamPreviewImage
impl UnsafeUnpin for UploadStreamPreviewImage
impl UnwindSafe for UploadStreamPreviewImage
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