pub struct OwnedVttCue {
pub start: Time,
pub end: Time,
pub name: Option<String>,
pub text: String,
pub note: Option<String>,
pub cue_settings: Option<VttCueSettings>,
}Expand description
Totally same as VttCue but owns the data.
Fields§
§start: Time§end: Time§name: Option<String>§text: String§note: Option<String>§cue_settings: Option<VttCueSettings>Implementations§
Trait Implementations§
Source§impl Clone for OwnedVttCue
impl Clone for OwnedVttCue
Source§fn clone(&self) -> OwnedVttCue
fn clone(&self) -> OwnedVttCue
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 OwnedVttCue
impl Debug for OwnedVttCue
Source§impl<'a> From<&'a OwnedVttCue> for &'a str
impl<'a> From<&'a OwnedVttCue> for &'a str
Source§fn from(value: &'a OwnedVttCue) -> &'a str
fn from(value: &'a OwnedVttCue) -> &'a str
Converts to this type from the input type.
Source§impl PartialEq for OwnedVttCue
impl PartialEq for OwnedVttCue
impl Eq for OwnedVttCue
impl StructuralPartialEq for OwnedVttCue
Auto Trait Implementations§
impl Freeze for OwnedVttCue
impl RefUnwindSafe for OwnedVttCue
impl Send for OwnedVttCue
impl Sync for OwnedVttCue
impl Unpin for OwnedVttCue
impl UnwindSafe for OwnedVttCue
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)