pub struct DatatypeData {
pub datatype: FixDatatype,
pub description: String,
pub examples: SmallVec<[String; 4]>,
}Fields§
§datatype: FixDatatypePrimary key. Identifier of the datatype.
description: StringHuman readable description of this Datatype.
examples: SmallVec<[String; 4]>A string that contains examples values for a datatype
Trait Implementations§
Source§impl Clone for DatatypeData
impl Clone for DatatypeData
Source§fn clone(&self) -> DatatypeData
fn clone(&self) -> DatatypeData
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 DatatypeData
impl Debug for DatatypeData
Source§impl PartialEq for DatatypeData
impl PartialEq for DatatypeData
impl StructuralPartialEq for DatatypeData
Auto Trait Implementations§
impl Freeze for DatatypeData
impl RefUnwindSafe for DatatypeData
impl Send for DatatypeData
impl Sync for DatatypeData
impl Unpin for DatatypeData
impl UnwindSafe for DatatypeData
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