pub struct FieldLayout<F: Form = MetaForm> { /* private fields */ }
Expand description
The layout for a particular field of a struct layout.
Implementations§
Trait Implementations§
Source§impl<'de, F: Form> Deserialize<'de> for FieldLayout<F>
impl<'de, F: Form> Deserialize<'de> for FieldLayout<F>
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl IntoPortable for FieldLayout
impl IntoPortable for FieldLayout
Source§type Output = FieldLayout<PortableForm>
type Output = FieldLayout<PortableForm>
The portable version of
Self
.Source§fn into_portable(self, registry: &mut Registry) -> Self::Output
fn into_portable(self, registry: &mut Registry) -> Self::Output
Convert
self
to the portable form by using the registry for caching.Source§impl<F: Form + JsonSchema> JsonSchema for FieldLayout<F>
impl<F: Form + JsonSchema> JsonSchema for FieldLayout<F>
Source§fn schema_name() -> String
fn schema_name() -> String
The name of the generated JSON Schema. Read more
Source§fn schema_id() -> Cow<'static, str>
fn schema_id() -> Cow<'static, str>
Returns a string that uniquely identifies the schema produced by this type. Read more
Source§fn json_schema(gen: &mut SchemaGenerator) -> Schema
fn json_schema(gen: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
Source§fn is_referenceable() -> bool
fn is_referenceable() -> bool
Whether JSON Schemas generated for this type should be re-used where possible using the
$ref
keyword. Read moreSource§impl<F: Ord + Form> Ord for FieldLayout<F>
impl<F: Ord + Form> Ord for FieldLayout<F>
Source§fn cmp(&self, other: &FieldLayout<F>) -> Ordering
fn cmp(&self, other: &FieldLayout<F>) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl<F: PartialOrd + Form> PartialOrd for FieldLayout<F>where
F::String: PartialOrd,
impl<F: PartialOrd + Form> PartialOrd for FieldLayout<F>where
F::String: PartialOrd,
Source§impl<F: Form> Serialize for FieldLayout<F>
impl<F: Form> Serialize for FieldLayout<F>
impl<F: Eq + Form> Eq for FieldLayout<F>
impl<F: Form> StructuralPartialEq for FieldLayout<F>
Auto Trait Implementations§
impl<F> Freeze for FieldLayout<F>
impl<F> RefUnwindSafe for FieldLayout<F>
impl<F> Send for FieldLayout<F>
impl<F> Sync for FieldLayout<F>
impl<F> Unpin for FieldLayout<F>
impl<F> UnwindSafe for FieldLayout<F>where
<F as Form>::String: UnwindSafe + RefUnwindSafe,
<F as Form>::Type: UnwindSafe + RefUnwindSafe,
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