pub struct Field<'a> {
pub name: Cow<'a, str>,
pub doc: Option<Cow<'a, str>>,
pub properties: Vec<Property<'a>>,
pub ty: Schema<'a>,
}Fields§
§name: Cow<'a, str>§doc: Option<Cow<'a, str>>§properties: Vec<Property<'a>>§ty: Schema<'a>Trait Implementations§
impl<'a> StructuralPartialEq for Field<'a>
Auto Trait Implementations§
impl<'a> Freeze for Field<'a>
impl<'a> RefUnwindSafe for Field<'a>
impl<'a> !Send for Field<'a>
impl<'a> !Sync for Field<'a>
impl<'a> Unpin for Field<'a>
impl<'a> UnwindSafe for Field<'a>
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