pub struct RootLayout<F: Form = MetaForm> { /* private fields */ }
Expand description
Sub-tree root.
Implementations§
Source§impl RootLayout<MetaForm>
impl RootLayout<MetaForm>
Trait Implementations§
Source§impl<'de, F: Form> Deserialize<'de> for RootLayout<F>
impl<'de, F: Form> Deserialize<'de> for RootLayout<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<F: Form> From<RootLayout<F>> for Layout<F>
impl<F: Form> From<RootLayout<F>> for Layout<F>
Source§fn from(value: RootLayout<F>) -> Self
fn from(value: RootLayout<F>) -> Self
Converts to this type from the input type.
Source§impl IntoPortable for RootLayout
impl IntoPortable for RootLayout
Source§type Output = RootLayout<PortableForm>
type Output = RootLayout<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 RootLayout<F>
impl<F: Form + JsonSchema> JsonSchema for RootLayout<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 RootLayout<F>
impl<F: Ord + Form> Ord for RootLayout<F>
Source§fn cmp(&self, other: &RootLayout<F>) -> Ordering
fn cmp(&self, other: &RootLayout<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 RootLayout<F>
impl<F: PartialOrd + Form> PartialOrd for RootLayout<F>
Source§impl<F: Form> Serialize for RootLayout<F>
impl<F: Form> Serialize for RootLayout<F>
impl<F: Eq + Form> Eq for RootLayout<F>
impl<F: Form> StructuralPartialEq for RootLayout<F>
Auto Trait Implementations§
impl<F> Freeze for RootLayout<F>
impl<F> RefUnwindSafe for RootLayout<F>
impl<F> Send for RootLayout<F>
impl<F> Sync for RootLayout<F>
impl<F> Unpin for RootLayout<F>
impl<F> UnwindSafe for RootLayout<F>where
<F as Form>::Type: UnwindSafe + RefUnwindSafe,
<F as Form>::String: 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