pub struct AlgorithmStep {
pub number: Vec<u32>,
pub text: String,
pub children: Vec<AlgorithmStep>,
}Expand description
A single step in a spec algorithm.
Fields§
§number: Vec<u32>§text: String§children: Vec<AlgorithmStep>Trait Implementations§
Source§impl Clone for AlgorithmStep
impl Clone for AlgorithmStep
Source§fn clone(&self) -> AlgorithmStep
fn clone(&self) -> AlgorithmStep
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 moreAuto Trait Implementations§
impl Freeze for AlgorithmStep
impl RefUnwindSafe for AlgorithmStep
impl Send for AlgorithmStep
impl Sync for AlgorithmStep
impl Unpin for AlgorithmStep
impl UnsafeUnpin for AlgorithmStep
impl UnwindSafe for AlgorithmStep
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