pub struct Info {
pub version: i32,
pub timestamp: Option<i64>,
pub changeset: Option<i64>,
pub uid: Option<i32>,
pub user_sid: Option<u32>,
pub visible: Option<bool>,
}
Fields§
§version: i32
§timestamp: Option<i64>
§changeset: Option<i64>
§uid: Option<i32>
§user_sid: Option<u32>
§visible: Option<bool>
Trait Implementations§
Source§impl<'a> MessageRead<'a> for Info
impl<'a> MessageRead<'a> for Info
Source§fn from_reader(r: &mut BytesReader, bytes: &'a [u8]) -> Result<Self>
fn from_reader(r: &mut BytesReader, bytes: &'a [u8]) -> Result<Self>
Constructs an instance of
Self
by reading from the given bytes
via the given reader. Read moreSource§impl MessageWrite for Info
impl MessageWrite for Info
impl StructuralPartialEq for Info
Auto Trait Implementations§
impl Freeze for Info
impl RefUnwindSafe for Info
impl Send for Info
impl Sync for Info
impl Unpin for Info
impl UnwindSafe for Info
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