pub struct Block<'a, E: StructOpt> {
pub comments: &'a str,
pub lang: &'a str,
pub directives: &'a str,
pub arguments: Arguments<E>,
pub text: &'a str,
pub result: Cell<Option<String>>,
}Fields§
§comments: &'a str§lang: &'a str§directives: &'a str§arguments: Arguments<E>§text: &'a str§result: Cell<Option<String>>Trait Implementations§
Auto Trait Implementations§
impl<'a, E> !Freeze for Block<'a, E>
impl<'a, E> !RefUnwindSafe for Block<'a, E>
impl<'a, E> Send for Block<'a, E>where
E: Send,
impl<'a, E> !Sync for Block<'a, E>
impl<'a, E> Unpin for Block<'a, E>where
E: Unpin,
impl<'a, E> UnwindSafe for Block<'a, E>where
E: 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