pub struct ConsoleCommand<'a> {
pub cid: i32,
pub flags: i32,
pub cmd: &'a [u8],
pub args: Vec<&'a [u8]>,
}Fields§
§cid: i32§flags: i32§cmd: &'a [u8]§args: Vec<&'a [u8]>Trait Implementations§
Source§impl<'a> Debug for ConsoleCommand<'a>
impl<'a> Debug for ConsoleCommand<'a>
Source§impl<'a> PartialEq for ConsoleCommand<'a>
impl<'a> PartialEq for ConsoleCommand<'a>
Source§impl<'a> Serialize for ConsoleCommand<'a>
impl<'a> Serialize for ConsoleCommand<'a>
impl<'a> StructuralPartialEq for ConsoleCommand<'a>
Auto Trait Implementations§
impl<'a> Freeze for ConsoleCommand<'a>
impl<'a> RefUnwindSafe for ConsoleCommand<'a>
impl<'a> Send for ConsoleCommand<'a>
impl<'a> Sync for ConsoleCommand<'a>
impl<'a> Unpin for ConsoleCommand<'a>
impl<'a> UnsafeUnpin for ConsoleCommand<'a>
impl<'a> UnwindSafe for ConsoleCommand<'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