pub enum BuilderError {
MutableMapExtensibilityNotAllowed,
}Expand description
Validierungs-Fehler beim Bauen von Collection-Typen.
Variants§
MutableMapExtensibilityNotAllowed
MUTABLE-Extensibility ist auf Maps nicht erlaubt (XTypes 1.3 §7.4.3.5.3 Rules 11-16). Spec erlaubt nur FINAL/ APPENDABLE; MUTABLE wird historisch silent als APPENDABLE behandelt. Dieser Fehler verhindert die silent demotion.
Trait Implementations§
Source§impl Clone for BuilderError
impl Clone for BuilderError
Source§fn clone(&self) -> BuilderError
fn clone(&self) -> BuilderError
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 BuilderError
impl Debug for BuilderError
Source§impl PartialEq for BuilderError
impl PartialEq for BuilderError
Source§fn eq(&self, other: &BuilderError) -> bool
fn eq(&self, other: &BuilderError) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for BuilderError
impl StructuralPartialEq for BuilderError
Auto Trait Implementations§
impl Freeze for BuilderError
impl RefUnwindSafe for BuilderError
impl Send for BuilderError
impl Sync for BuilderError
impl Unpin for BuilderError
impl UnsafeUnpin for BuilderError
impl UnwindSafe for BuilderError
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