pub struct PlayClientWindowConfirmationSpec {
pub window_id: i8,
pub action_num: i16,
pub accepted: bool,
}
Fields§
§window_id: i8
§action_num: i16
§accepted: bool
Trait Implementations§
Source§impl Clone for PlayClientWindowConfirmationSpec
impl Clone for PlayClientWindowConfirmationSpec
Source§fn clone(&self) -> PlayClientWindowConfirmationSpec
fn clone(&self) -> PlayClientWindowConfirmationSpec
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 Deserialize for PlayClientWindowConfirmationSpec
impl Deserialize for PlayClientWindowConfirmationSpec
fn mc_deserialize(_rest: &[u8]) -> DeserializeResult<'_, Self>
Source§impl From<PlayClientWindowConfirmationSpec> for (i8, i16, bool)
impl From<PlayClientWindowConfirmationSpec> for (i8, i16, bool)
Source§fn from(other: PlayClientWindowConfirmationSpec) -> Self
fn from(other: PlayClientWindowConfirmationSpec) -> Self
Converts to this type from the input type.
Source§impl PartialEq for PlayClientWindowConfirmationSpec
impl PartialEq for PlayClientWindowConfirmationSpec
Source§fn eq(&self, other: &PlayClientWindowConfirmationSpec) -> bool
fn eq(&self, other: &PlayClientWindowConfirmationSpec) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.Source§impl Serialize for PlayClientWindowConfirmationSpec
impl Serialize for PlayClientWindowConfirmationSpec
fn mc_serialize<S: Serializer>(&self, to: &mut S) -> SerializeResult
impl StructuralPartialEq for PlayClientWindowConfirmationSpec
Auto Trait Implementations§
impl Freeze for PlayClientWindowConfirmationSpec
impl RefUnwindSafe for PlayClientWindowConfirmationSpec
impl Send for PlayClientWindowConfirmationSpec
impl Sync for PlayClientWindowConfirmationSpec
impl Unpin for PlayClientWindowConfirmationSpec
impl UnwindSafe for PlayClientWindowConfirmationSpec
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