pub struct CommandBlock<'a> {
pub name: &'a str,
pub arguments: &'a str,
pub inner: RawMarkdown<'a>,
}
Fields§
§name: &'a str
§arguments: &'a str
§inner: RawMarkdown<'a>
Implementations§
Trait Implementations§
Source§impl<'a> Clone for CommandBlock<'a>
impl<'a> Clone for CommandBlock<'a>
Source§fn clone(&self) -> CommandBlock<'a>
fn clone(&self) -> CommandBlock<'a>
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<'a> Debug for CommandBlock<'a>
impl<'a> Debug for CommandBlock<'a>
Source§impl<'a> PartialEq for CommandBlock<'a>
impl<'a> PartialEq for CommandBlock<'a>
impl<'a> Copy for CommandBlock<'a>
impl<'a> Eq for CommandBlock<'a>
impl<'a> StructuralPartialEq for CommandBlock<'a>
Auto Trait Implementations§
impl<'a> Freeze for CommandBlock<'a>
impl<'a> RefUnwindSafe for CommandBlock<'a>
impl<'a> Send for CommandBlock<'a>
impl<'a> Sync for CommandBlock<'a>
impl<'a> Unpin for CommandBlock<'a>
impl<'a> UnwindSafe for CommandBlock<'a>
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