#[repr(C)]pub struct MumbleIdentityUpdate {
pub name: [u8; 20],
pub profession: u32,
pub specialization: u32,
pub race: u32,
pub map_id: u32,
pub world_id: u32,
pub team_color_id: u32,
pub is_commander: bool,
pub fov: f32,
pub ui_size: u32,
}Expand description
Mumble identity.
Fields§
§name: [u8; 20]§profession: u32§specialization: u32§race: u32§map_id: u32§world_id: u32§team_color_id: u32§is_commander: bool§fov: f32§ui_size: u32Trait Implementations§
Source§impl Clone for MumbleIdentityUpdate
impl Clone for MumbleIdentityUpdate
Source§fn clone(&self) -> MumbleIdentityUpdate
fn clone(&self) -> MumbleIdentityUpdate
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 moreAuto Trait Implementations§
impl Freeze for MumbleIdentityUpdate
impl RefUnwindSafe for MumbleIdentityUpdate
impl Send for MumbleIdentityUpdate
impl Sync for MumbleIdentityUpdate
impl Unpin for MumbleIdentityUpdate
impl UnwindSafe for MumbleIdentityUpdate
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