pub struct CreateLobbyParams {
pub max_lobby_members: u32,
pub permission_level: EOS_ELobbyPermissionLevel,
pub presence_enabled: bool,
pub allow_invites: bool,
pub bucket_id: String,
pub disable_host_migration: bool,
pub enable_rtc_room: bool,
pub enable_join_by_id: bool,
pub rejoin_after_kick_requires_invite: bool,
}Fields§
§max_lobby_members: u32§permission_level: EOS_ELobbyPermissionLevel§presence_enabled: bool§allow_invites: bool§bucket_id: String§disable_host_migration: bool§enable_rtc_room: bool§enable_join_by_id: bool§rejoin_after_kick_requires_invite: boolTrait Implementations§
Source§impl Clone for CreateLobbyParams
impl Clone for CreateLobbyParams
Source§fn clone(&self) -> CreateLobbyParams
fn clone(&self) -> CreateLobbyParams
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 Debug for CreateLobbyParams
impl Debug for CreateLobbyParams
Auto Trait Implementations§
impl Freeze for CreateLobbyParams
impl RefUnwindSafe for CreateLobbyParams
impl Send for CreateLobbyParams
impl Sync for CreateLobbyParams
impl Unpin for CreateLobbyParams
impl UnsafeUnpin for CreateLobbyParams
impl UnwindSafe for CreateLobbyParams
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