pub struct DataStruct {
pub fields: Fields,
}
Expand description
Data associated with struct
type information.
Fields§
§fields: Fields
The fields that this struct
consists of.
Trait Implementations§
Source§impl Clone for DataStruct
impl Clone for DataStruct
Source§fn clone(&self) -> DataStruct
fn clone(&self) -> DataStruct
Returns a copy 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 DataStruct
impl Debug for DataStruct
Source§impl Hash for DataStruct
impl Hash for DataStruct
Source§impl Ord for DataStruct
impl Ord for DataStruct
Source§fn cmp(&self, other: &DataStruct) -> Ordering
fn cmp(&self, other: &DataStruct) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for DataStruct
impl PartialEq for DataStruct
Source§impl PartialOrd for DataStruct
impl PartialOrd for DataStruct
impl Eq for DataStruct
impl StructuralPartialEq for DataStruct
Auto Trait Implementations§
impl Freeze for DataStruct
impl RefUnwindSafe for DataStruct
impl Send for DataStruct
impl Sync for DataStruct
impl Unpin for DataStruct
impl UnwindSafe for DataStruct
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