pub struct SpinnerAst {
pub id: String,
pub wedges: Vec<SpinnerWedgeAst>,
pub src_line: usize,
}Expand description
Spinner definition containing weighted text wedges.
Fields§
§id: String§wedges: Vec<SpinnerWedgeAst>§src_line: usizeTrait Implementations§
Source§impl Clone for SpinnerAst
impl Clone for SpinnerAst
Source§fn clone(&self) -> SpinnerAst
fn clone(&self) -> SpinnerAst
Returns a duplicate 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 SpinnerAst
impl Debug for SpinnerAst
Source§impl PartialEq for SpinnerAst
impl PartialEq for SpinnerAst
impl StructuralPartialEq for SpinnerAst
Auto Trait Implementations§
impl Freeze for SpinnerAst
impl RefUnwindSafe for SpinnerAst
impl Send for SpinnerAst
impl Sync for SpinnerAst
impl Unpin for SpinnerAst
impl UnwindSafe for SpinnerAst
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