pub struct ModelSchema {
pub response: ResponseSchema,
pub parameters: Vec<ParameterTerms>,
}Expand description
Schema for a built formula model.
Fields§
§response: ResponseSchemaResponse column.
parameters: Vec<ParameterTerms>Per-parameter term metadata.
Trait Implementations§
Source§impl Clone for ModelSchema
impl Clone for ModelSchema
Source§fn clone(&self) -> ModelSchema
fn clone(&self) -> ModelSchema
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ModelSchema
impl Debug for ModelSchema
Source§impl PartialEq for ModelSchema
impl PartialEq for ModelSchema
Source§fn eq(&self, other: &ModelSchema) -> bool
fn eq(&self, other: &ModelSchema) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ModelSchema
Auto Trait Implementations§
impl Freeze for ModelSchema
impl RefUnwindSafe for ModelSchema
impl Send for ModelSchema
impl Sync for ModelSchema
impl Unpin for ModelSchema
impl UnsafeUnpin for ModelSchema
impl UnwindSafe for ModelSchema
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