#[non_exhaustive]pub struct LegacyMappingIdAttributes {
pub type_: Option<LegacyMappingType>,
pub legacy_id: u32,
pub new_id: Uuid,
}Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.type_: Option<LegacyMappingType>§legacy_id: u32§new_id: UuidTrait Implementations§
Source§impl Debug for LegacyMappingIdAttributes
impl Debug for LegacyMappingIdAttributes
Source§impl Default for LegacyMappingIdAttributes
impl Default for LegacyMappingIdAttributes
Source§fn default() -> LegacyMappingIdAttributes
fn default() -> LegacyMappingIdAttributes
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for LegacyMappingIdAttributes
impl<'de> Deserialize<'de> for LegacyMappingIdAttributes
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 TypedAttributes for LegacyMappingIdAttributes
impl TypedAttributes for LegacyMappingIdAttributes
const TYPE_: RelationshipType = RelationshipType::MappingId
Auto Trait Implementations§
impl Freeze for LegacyMappingIdAttributes
impl RefUnwindSafe for LegacyMappingIdAttributes
impl Send for LegacyMappingIdAttributes
impl Sync for LegacyMappingIdAttributes
impl Unpin for LegacyMappingIdAttributes
impl UnwindSafe for LegacyMappingIdAttributes
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