pub struct CgTableEntry {
pub name: String,
pub flag_no: i32,
pub code_exist_cnt: i32,
pub code: [i32; 5],
pub list_no: i32,
pub group: [i32; 5],
}Fields§
§name: String§flag_no: i32§code_exist_cnt: i32§code: [i32; 5]§list_no: i32§group: [i32; 5]Trait Implementations§
Source§impl Clone for CgTableEntry
impl Clone for CgTableEntry
Source§fn clone(&self) -> CgTableEntry
fn clone(&self) -> CgTableEntry
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 CgTableEntry
impl RefUnwindSafe for CgTableEntry
impl Send for CgTableEntry
impl Sync for CgTableEntry
impl Unpin for CgTableEntry
impl UnsafeUnpin for CgTableEntry
impl UnwindSafe for CgTableEntry
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