Struct ruma_events::file::CaptionContentBlock
source · pub struct CaptionContentBlock {
pub text: TextContentBlock,
}
Expand description
A block for caption content.
A caption is usually a text message that should be displayed next to some media content.
To construct a CaptionContentBlock
with a custom TextContentBlock
, convert it with
CaptionContentBlock::from()
/ .into()
.
Fields§
§text: TextContentBlock
The text message of the caption.
Implementations§
source§impl CaptionContentBlock
impl CaptionContentBlock
Trait Implementations§
source§impl Clone for CaptionContentBlock
impl Clone for CaptionContentBlock
source§fn clone(&self) -> CaptionContentBlock
fn clone(&self) -> CaptionContentBlock
Returns a copy 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 CaptionContentBlock
impl Debug for CaptionContentBlock
source§impl<'de> Deserialize<'de> for CaptionContentBlock
impl<'de> Deserialize<'de> for CaptionContentBlock
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
source§impl From<TextContentBlock> for CaptionContentBlock
impl From<TextContentBlock> for CaptionContentBlock
source§fn from(text: TextContentBlock) -> Self
fn from(text: TextContentBlock) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for CaptionContentBlock
impl RefUnwindSafe for CaptionContentBlock
impl Send for CaptionContentBlock
impl Sync for CaptionContentBlock
impl Unpin for CaptionContentBlock
impl UnwindSafe for CaptionContentBlock
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)