pub struct Field<Id, S> { /* private fields */ }Expand description
Represents a field or property with its associated status.
Field differs from KeyValue in that the id/key points to a preexisting
field, index, or property of a data structure. This is useful for indicating
the status of specific fields in validation or processing contexts.
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl<Id, S> Freeze for Field<Id, S>
impl<Id, S> RefUnwindSafe for Field<Id, S>where
Id: RefUnwindSafe,
S: RefUnwindSafe,
impl<Id, S> Send for Field<Id, S>
impl<Id, S> Sync for Field<Id, S>
impl<Id, S> Unpin for Field<Id, S>
impl<Id, S> UnwindSafe for Field<Id, S>where
Id: UnwindSafe,
S: UnwindSafe,
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