pub struct Field {
pub name: String,
pub attributes: FieldAttributes,
}Expand description
Field of a Table
Fields§
§name: String§attributes: FieldAttributesImplementations§
source§impl Field
impl Field
sourcepub fn new(name: &str, attrs: &FieldAttributes) -> Self
pub fn new(name: &str, attrs: &FieldAttributes) -> Self
Initialize Field named name with FieldAttributes
sourcepub fn new_only_db(name: &str, attrs: &FieldAttributes) -> Self
pub fn new_only_db(name: &str, attrs: &FieldAttributes) -> Self
Initialize Field named name with FieldAttributes with only_db attributes on
Trait Implementations§
source§impl<'de> Deserialize<'de> for Field
impl<'de> Deserialize<'de> for Field
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where __D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl PartialEq<Field> for Field
impl PartialEq<Field> for Field
impl StructuralPartialEq for Field
Auto Trait Implementations§
impl RefUnwindSafe for Field
impl Send for Field
impl Sync for Field
impl Unpin for Field
impl UnwindSafe for Field
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