pub enum ConstructorError {
MissingBindBeforeSetBlockValue,
MissingBindBeforeEndBindingValue,
MissingEndEureBlockBeforeEndBindingBlock,
MissingEndEureBlockBeforeEndSectionBlock,
InvalidBuilderStackForEndEureBlock,
InvalidBuilderStackForEndSectionItems,
StandaloneArrayIndex,
}Expand description
Protocol errors for SourceConstructor operations.
Variants§
MissingBindBeforeSetBlockValue
MissingBindBeforeEndBindingValue
MissingEndEureBlockBeforeEndBindingBlock
MissingEndEureBlockBeforeEndSectionBlock
InvalidBuilderStackForEndEureBlock
InvalidBuilderStackForEndSectionItems
StandaloneArrayIndex
Trait Implementations§
Source§impl Clone for ConstructorError
impl Clone for ConstructorError
Source§fn clone(&self) -> ConstructorError
fn clone(&self) -> ConstructorError
Returns a duplicate 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 Debug for ConstructorError
impl Debug for ConstructorError
Source§impl Display for ConstructorError
impl Display for ConstructorError
Source§impl Error for ConstructorError
impl Error for ConstructorError
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
Source§impl From<ConstructorError> for InsertErrorKind
impl From<ConstructorError> for InsertErrorKind
Source§fn from(source: ConstructorError) -> Self
fn from(source: ConstructorError) -> Self
Converts to this type from the input type.
Source§impl PartialEq for ConstructorError
impl PartialEq for ConstructorError
impl StructuralPartialEq for ConstructorError
Auto Trait Implementations§
impl Freeze for ConstructorError
impl RefUnwindSafe for ConstructorError
impl Send for ConstructorError
impl Sync for ConstructorError
impl Unpin for ConstructorError
impl UnwindSafe for ConstructorError
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