pub struct Block<S> {
pub head: S,
pub subs: Vec<Block<S>>,
}Fields§
§head: S§subs: Vec<Block<S>>Implementations§
Trait Implementations§
Source§impl<'ast, T: 'ast> IntoUnindented for &'ast Block<T>where
&'ast T: IntoUnindented,
impl<'ast, T: 'ast> IntoUnindented for &'ast Block<T>where
&'ast T: IntoUnindented,
Auto Trait Implementations§
impl<S> Freeze for Block<S>where
S: Freeze,
impl<S> RefUnwindSafe for Block<S>where
S: RefUnwindSafe,
impl<S> Send for Block<S>where
S: Send,
impl<S> Sync for Block<S>where
S: Sync,
impl<S> Unpin for Block<S>where
S: Unpin,
impl<S> UnwindSafe for Block<S>where
S: UnwindSafe,
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