pub struct ModelStorageBindingStorageKindClonedSpec<Storage> {
pub source: Storage,
pub source_binding_name: Option<String>,
pub target: Storage,
pub sync_policy: ModelStorageBindingSyncPolicy,
}
Fields§
§source: Storage
§source_binding_name: Option<String>
§target: Storage
§sync_policy: ModelStorageBindingSyncPolicy
Trait Implementations§
Source§impl<Storage: Clone> Clone for ModelStorageBindingStorageKindClonedSpec<Storage>
impl<Storage: Clone> Clone for ModelStorageBindingStorageKindClonedSpec<Storage>
Source§fn clone(&self) -> ModelStorageBindingStorageKindClonedSpec<Storage>
fn clone(&self) -> ModelStorageBindingStorageKindClonedSpec<Storage>
Returns a copy 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 moreSource§impl<Storage: Debug> Debug for ModelStorageBindingStorageKindClonedSpec<Storage>
impl<Storage: Debug> Debug for ModelStorageBindingStorageKindClonedSpec<Storage>
Source§impl<'de, Storage> Deserialize<'de> for ModelStorageBindingStorageKindClonedSpec<Storage>where
Storage: Deserialize<'de>,
impl<'de, Storage> Deserialize<'de> for ModelStorageBindingStorageKindClonedSpec<Storage>where
Storage: Deserialize<'de>,
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<Storage: JsonSchema> JsonSchema for ModelStorageBindingStorageKindClonedSpec<Storage>
impl<Storage: JsonSchema> JsonSchema for ModelStorageBindingStorageKindClonedSpec<Storage>
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<Storage: PartialEq> PartialEq for ModelStorageBindingStorageKindClonedSpec<Storage>
impl<Storage: PartialEq> PartialEq for ModelStorageBindingStorageKindClonedSpec<Storage>
Source§fn eq(&self, other: &ModelStorageBindingStorageKindClonedSpec<Storage>) -> bool
fn eq(&self, other: &ModelStorageBindingStorageKindClonedSpec<Storage>) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.Source§impl<Storage> Serialize for ModelStorageBindingStorageKindClonedSpec<Storage>where
Storage: Serialize,
impl<Storage> Serialize for ModelStorageBindingStorageKindClonedSpec<Storage>where
Storage: Serialize,
impl<Storage> StructuralPartialEq for ModelStorageBindingStorageKindClonedSpec<Storage>
Auto Trait Implementations§
impl<Storage> Freeze for ModelStorageBindingStorageKindClonedSpec<Storage>where
Storage: Freeze,
impl<Storage> RefUnwindSafe for ModelStorageBindingStorageKindClonedSpec<Storage>where
Storage: RefUnwindSafe,
impl<Storage> Send for ModelStorageBindingStorageKindClonedSpec<Storage>where
Storage: Send,
impl<Storage> Sync for ModelStorageBindingStorageKindClonedSpec<Storage>where
Storage: Sync,
impl<Storage> Unpin for ModelStorageBindingStorageKindClonedSpec<Storage>where
Storage: Unpin,
impl<Storage> UnwindSafe for ModelStorageBindingStorageKindClonedSpec<Storage>where
Storage: UnwindSafe,
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