pub struct DownloadGameStateResponse {
pub client_request: u8,
pub tick_id: TickId,
pub blob_stream_channel: u16,
}
Fields§
§client_request: u8
§tick_id: TickId
§blob_stream_channel: u16
Implementations§
source§impl DownloadGameStateResponse
impl DownloadGameStateResponse
sourcepub fn to_stream(&self, stream: &mut impl WriteOctetStream) -> Result<()>
pub fn to_stream(&self, stream: &mut impl WriteOctetStream) -> Result<()>
§Errors
io::Error
// TODO:
sourcepub fn from_stream(stream: &mut impl ReadOctetStream) -> Result<Self>
pub fn from_stream(stream: &mut impl ReadOctetStream) -> Result<Self>
§Errors
io::Error
// TODO:
Trait Implementations§
source§impl Debug for DownloadGameStateResponse
impl Debug for DownloadGameStateResponse
source§impl Display for DownloadGameStateResponse
impl Display for DownloadGameStateResponse
impl Eq for DownloadGameStateResponse
impl StructuralPartialEq for DownloadGameStateResponse
Auto Trait Implementations§
impl Freeze for DownloadGameStateResponse
impl RefUnwindSafe for DownloadGameStateResponse
impl Send for DownloadGameStateResponse
impl Sync for DownloadGameStateResponse
impl Unpin for DownloadGameStateResponse
impl UnwindSafe for DownloadGameStateResponse
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