pub enum StageFrameError {
BadGeneration {
got: u32,
},
InvalidEndpointId {
got: usize,
},
InvalidArtifactDigestLength {
got: usize,
},
InvalidArtifactPath,
InvalidArtifactOffset,
MissingStageControlCommand,
MissingStageControlResponse,
MissingStageTransportTarget,
MissingStageArtifactTarget,
}Variants§
BadGeneration
InvalidEndpointId
InvalidArtifactDigestLength
InvalidArtifactPath
InvalidArtifactOffset
MissingStageControlCommand
MissingStageControlResponse
MissingStageTransportTarget
MissingStageArtifactTarget
Trait Implementations§
Source§impl Clone for StageFrameError
impl Clone for StageFrameError
Source§fn clone(&self) -> StageFrameError
fn clone(&self) -> StageFrameError
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 StageFrameError
impl Debug for StageFrameError
Source§impl Display for StageFrameError
impl Display for StageFrameError
impl Eq for StageFrameError
Source§impl Error for StageFrameError
impl Error for StageFrameError
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 PartialEq for StageFrameError
impl PartialEq for StageFrameError
impl StructuralPartialEq for StageFrameError
Auto Trait Implementations§
impl Freeze for StageFrameError
impl RefUnwindSafe for StageFrameError
impl Send for StageFrameError
impl Sync for StageFrameError
impl Unpin for StageFrameError
impl UnsafeUnpin for StageFrameError
impl UnwindSafe for StageFrameError
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