pub enum AnyField {
Basic(Field),
Group(GroupField),
}
Expand description
All fields that can be set in a request
Variants§
Basic(Field)
Group(GroupField)
Trait Implementations§
Source§impl From<GroupField> for AnyField
impl From<GroupField> for AnyField
Source§fn from(f: GroupField) -> Self
fn from(f: GroupField) -> Self
Converts to this type from the input type.
impl Copy for AnyField
impl Eq for AnyField
impl StructuralPartialEq for AnyField
Auto Trait Implementations§
impl Freeze for AnyField
impl RefUnwindSafe for AnyField
impl Send for AnyField
impl Sync for AnyField
impl Unpin for AnyField
impl UnwindSafe for AnyField
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