pub enum SemanticChildError {
TilesNotLoaded {
nodegroup_id: String,
},
ChildNotFound {
alias: String,
},
TilesNotInitialized,
ModelNotInitialized(String),
Other(String),
}Expand description
Error type for semantic child value retrieval
Variants§
TilesNotLoaded
Tiles for the required nodegroup have not been loaded yet
ChildNotFound
Child node not found
TilesNotInitialized
Tiles storage not initialized
ModelNotInitialized(String)
Model not initialized
Other(String)
Other error
Trait Implementations§
Source§impl Clone for SemanticChildError
impl Clone for SemanticChildError
Source§fn clone(&self) -> SemanticChildError
fn clone(&self) -> SemanticChildError
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 SemanticChildError
impl Debug for SemanticChildError
Source§impl Display for SemanticChildError
impl Display for SemanticChildError
Source§impl Error for SemanticChildError
impl Error for SemanticChildError
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()
Auto Trait Implementations§
impl Freeze for SemanticChildError
impl RefUnwindSafe for SemanticChildError
impl Send for SemanticChildError
impl Sync for SemanticChildError
impl Unpin for SemanticChildError
impl UnsafeUnpin for SemanticChildError
impl UnwindSafe for SemanticChildError
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