pub struct EventCategory {
pub category_id: i32,
pub category_name: String,
pub visible: bool,
}
Fields§
§category_id: i32
§category_name: String
§visible: bool
Trait Implementations§
Source§impl Clone for EventCategory
impl Clone for EventCategory
Source§fn clone(&self) -> EventCategory
fn clone(&self) -> EventCategory
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 EventCategory
impl Debug for EventCategory
Source§impl Default for EventCategory
impl Default for EventCategory
Source§fn default() -> EventCategory
fn default() -> EventCategory
Returns the “default value” for a type. Read more
Source§impl PacketVariable for EventCategory
impl PacketVariable for EventCategory
Source§impl PartialEq for EventCategory
impl PartialEq for EventCategory
impl StructuralPartialEq for EventCategory
Auto Trait Implementations§
impl Freeze for EventCategory
impl RefUnwindSafe for EventCategory
impl Send for EventCategory
impl Sync for EventCategory
impl Unpin for EventCategory
impl UnwindSafe for EventCategory
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