pub struct ChangeTagDefinition {
    pub id: ChangeTagDefinitionId,
    pub name: String,
    pub user_defined: bool,
    pub count: u64,
}Expand description
Represents a row in the change_tag_def table.
Fields§
§id: ChangeTagDefinitionId§name: String§user_defined: bool§count: u64Trait Implementations§
Source§impl Clone for ChangeTagDefinition
 
impl Clone for ChangeTagDefinition
Source§fn clone(&self) -> ChangeTagDefinition
 
fn clone(&self) -> ChangeTagDefinition
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 ChangeTagDefinition
 
impl Debug for ChangeTagDefinition
Source§impl<'de> Deserialize<'de> for ChangeTagDefinition
 
impl<'de> Deserialize<'de> for ChangeTagDefinition
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<'input> FromSqlTuple<'input> for ChangeTagDefinition
 
impl<'input> FromSqlTuple<'input> for ChangeTagDefinition
fn from_sql_tuple(s: &'input [u8]) -> IResult<'input, Self>
Source§impl Hash for ChangeTagDefinition
 
impl Hash for ChangeTagDefinition
Source§impl Ord for ChangeTagDefinition
 
impl Ord for ChangeTagDefinition
Source§fn cmp(&self, other: &ChangeTagDefinition) -> Ordering
 
fn cmp(&self, other: &ChangeTagDefinition) -> 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 ChangeTagDefinition
 
impl PartialEq for ChangeTagDefinition
Source§impl PartialOrd for ChangeTagDefinition
 
impl PartialOrd for ChangeTagDefinition
Source§impl Serialize for ChangeTagDefinition
 
impl Serialize for ChangeTagDefinition
impl Eq for ChangeTagDefinition
impl StructuralPartialEq for ChangeTagDefinition
Auto Trait Implementations§
impl Freeze for ChangeTagDefinition
impl RefUnwindSafe for ChangeTagDefinition
impl Send for ChangeTagDefinition
impl Sync for ChangeTagDefinition
impl Unpin for ChangeTagDefinition
impl UnwindSafe for ChangeTagDefinition
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