pub struct ResolvedSchema {
pub name: String,
pub all_properties: HashMap<String, FtmProperty>,
pub all_required: HashSet<String>,
pub metadata: FtmSchema,
}Expand description
A resolved schema with all properties flattened
Fields§
§name: String§all_properties: HashMap<String, FtmProperty>§all_required: HashSet<String>§metadata: FtmSchemaImplementations§
Trait Implementations§
Source§impl Clone for ResolvedSchema
impl Clone for ResolvedSchema
Source§fn clone(&self) -> ResolvedSchema
fn clone(&self) -> ResolvedSchema
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 moreAuto Trait Implementations§
impl Freeze for ResolvedSchema
impl RefUnwindSafe for ResolvedSchema
impl Send for ResolvedSchema
impl Sync for ResolvedSchema
impl Unpin for ResolvedSchema
impl UnsafeUnpin for ResolvedSchema
impl UnwindSafe for ResolvedSchema
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