pub struct LineEntry {
pub content: LineContent,
pub flags: LineFlags,
pub source_hash: u64,
pub audio_ref: Option<String>,
pub slot_info: Vec<SlotInfo>,
pub source_location: Option<SourceLocation>,
}Expand description
One entry in a container’s line table.
Fields§
§content: LineContent§flags: LineFlags§source_hash: u64§audio_ref: Option<String>§slot_info: Vec<SlotInfo>§source_location: Option<SourceLocation>Trait Implementations§
impl StructuralPartialEq for LineEntry
Auto Trait Implementations§
impl Freeze for LineEntry
impl RefUnwindSafe for LineEntry
impl Send for LineEntry
impl Sync for LineEntry
impl Unpin for LineEntry
impl UnsafeUnpin for LineEntry
impl UnwindSafe for LineEntry
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