#[non_exhaustive]pub struct EbuttmTextElement {
pub text: String,
}Expand description
Text-only EBU-TT-M element (like <ebuttm:conformsToStandard>).
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.text: StringText content.
Trait Implementations§
Source§impl Clone for EbuttmTextElement
impl Clone for EbuttmTextElement
Source§fn clone(&self) -> EbuttmTextElement
fn clone(&self) -> EbuttmTextElement
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 EbuttmTextElement
impl Debug for EbuttmTextElement
Source§impl Default for EbuttmTextElement
impl Default for EbuttmTextElement
Source§fn default() -> EbuttmTextElement
fn default() -> EbuttmTextElement
Returns the “default value” for a type. Read more
Source§impl PartialEq for EbuttmTextElement
impl PartialEq for EbuttmTextElement
impl StructuralPartialEq for EbuttmTextElement
Auto Trait Implementations§
impl Freeze for EbuttmTextElement
impl RefUnwindSafe for EbuttmTextElement
impl Send for EbuttmTextElement
impl Sync for EbuttmTextElement
impl Unpin for EbuttmTextElement
impl UnsafeUnpin for EbuttmTextElement
impl UnwindSafe for EbuttmTextElement
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