pub struct ObjectCell {
pub onset: Time,
pub duration: Time,
pub object: Symbol,
}Expand description
A cell that places a named runtime object on a lane.
Fields§
§onset: TimeOnset time of the object.
duration: TimeDuration the object occupies.
object: SymbolSymbol naming the placed object.
Trait Implementations§
Source§impl Clone for ObjectCell
impl Clone for ObjectCell
Source§fn clone(&self) -> ObjectCell
fn clone(&self) -> ObjectCell
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 ObjectCell
impl Debug for ObjectCell
impl Eq for ObjectCell
Source§impl PartialEq for ObjectCell
impl PartialEq for ObjectCell
impl StructuralPartialEq for ObjectCell
Auto Trait Implementations§
impl Freeze for ObjectCell
impl RefUnwindSafe for ObjectCell
impl Send for ObjectCell
impl Sync for ObjectCell
impl Unpin for ObjectCell
impl UnsafeUnpin for ObjectCell
impl UnwindSafe for ObjectCell
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