Skip to main content

IRelayUserGlobalData_TicketMethods

Trait IRelayUserGlobalData_TicketMethods 

Source
pub trait IRelayUserGlobalData_TicketMethods: IRelayUserGlobalData_Ticket {
    // Provided methods
    fn get_count(self) -> u32 { ... }
    fn set_count(self, value: impl Into<u32>) { ... }
    fn get_last_time(self) -> i64 { ... }
    fn set_last_time(self, value: impl Into<i64>) { ... }
    fn serialize(self, stream: impl Into<Stream_2>) { ... }
    fn deserialize(self, stream: impl Into<Stream_2>, version: impl Into<i32>) { ... }
    fn ctor(self) { ... }
}

Provided Methods§

Source

fn get_count(self) -> u32

get_Count() overload

Source

fn set_count(self, value: impl Into<u32>)

set_Count(u32) overload

Source

fn get_last_time(self) -> i64

get_LastTime() overload

Source

fn set_last_time(self, value: impl Into<i64>)

set_LastTime(i64) overload

Source

fn serialize(self, stream: impl Into<Stream_2>)

Serialize(crate::app::stream_2::Stream_2) overload

Source

fn deserialize(self, stream: impl Into<Stream_2>, version: impl Into<i32>)

Deserialize(crate::app::stream_2::Stream_2, i32) overload

Source

fn ctor(self)

.ctor() overload

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§

Source§

impl<__T: IRelayUserGlobalData_Ticket> IRelayUserGlobalData_TicketMethods for __T

Available on crate feature app-relayuserglobaldata only.