pub struct PlayerStartReply {
pub lts_id: u8,
pub input_status: InputStatus,
}Expand description
CICAM_player_start_reply() (Table 55): Host → CICAM.
Fields§
§lts_id: u8LTS_id (8) — Local TS allocated; uniquely identifies the player session.
Ignored if input_status is non-zero.
input_status: InputStatusinput_status (8) — Table 56.
Trait Implementations§
Source§impl Clone for PlayerStartReply
impl Clone for PlayerStartReply
Source§fn clone(&self) -> PlayerStartReply
fn clone(&self) -> PlayerStartReply
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for PlayerStartReply
Source§impl Debug for PlayerStartReply
impl Debug for PlayerStartReply
impl Eq for PlayerStartReply
Source§impl<'a> Parse<'a> for PlayerStartReply
impl<'a> Parse<'a> for PlayerStartReply
Source§impl PartialEq for PlayerStartReply
impl PartialEq for PlayerStartReply
Source§impl Serialize for PlayerStartReply
Available on crate feature serde only.
impl Serialize for PlayerStartReply
Available on crate feature
serde only.Source§impl Serialize for PlayerStartReply
impl Serialize for PlayerStartReply
Source§type Error = Error
type Error = Error
The error type this implementer returns (usually the same as the
corresponding
Parse impl, but need not be).Source§fn serialized_len(&self) -> usize
fn serialized_len(&self) -> usize
Number of bytes
serialize_into will write.impl StructuralPartialEq for PlayerStartReply
Auto Trait Implementations§
impl Freeze for PlayerStartReply
impl RefUnwindSafe for PlayerStartReply
impl Send for PlayerStartReply
impl Sync for PlayerStartReply
impl Unpin for PlayerStartReply
impl UnsafeUnpin for PlayerStartReply
impl UnwindSafe for PlayerStartReply
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