pub struct TypeAndField {
pub qualified_type_name: String,
pub field_ident: String,
}
Expand description
The name of a field along with its type. Used for the path to a PII-field.
Fields§
§qualified_type_name: String
§field_ident: String
Trait Implementations§
Source§impl Clone for TypeAndField
impl Clone for TypeAndField
Source§fn clone(&self) -> TypeAndField
fn clone(&self) -> TypeAndField
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 TypeAndField
impl Debug for TypeAndField
Source§impl Default for TypeAndField
impl Default for TypeAndField
Source§fn default() -> TypeAndField
fn default() -> TypeAndField
Returns the “default value” for a type. Read more
Source§impl Hash for TypeAndField
impl Hash for TypeAndField
Source§impl Ord for TypeAndField
impl Ord for TypeAndField
Source§fn cmp(&self, other: &TypeAndField) -> Ordering
fn cmp(&self, other: &TypeAndField) -> 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 TypeAndField
impl PartialEq for TypeAndField
Source§impl PartialOrd for TypeAndField
impl PartialOrd for TypeAndField
impl Eq for TypeAndField
impl StructuralPartialEq for TypeAndField
Auto Trait Implementations§
impl Freeze for TypeAndField
impl RefUnwindSafe for TypeAndField
impl Send for TypeAndField
impl Sync for TypeAndField
impl Unpin for TypeAndField
impl UnwindSafe for TypeAndField
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