pub enum ExplodedDecodeError {
InvalidShape,
BlockOutOfBounds {
proc_id: u32,
block_id: u32,
slot: u32,
slot_count: u32,
},
StatementOutOfBounds {
statement: u32,
statement_count: u32,
},
}Expand description
Distinguishable failures when converting exploded IFDS reachability
into the statement-id bitmask consumed by extract_path.
Variants§
InvalidShape
blocks_per_proc was zero, so (proc, block) cannot be flattened.
BlockOutOfBounds
The decoded (proc, block) slot was not present in block_to_statement.
Fields
StatementOutOfBounds
The block map named a statement outside the caller’s statement table.
Trait Implementations§
Source§impl Clone for ExplodedDecodeError
impl Clone for ExplodedDecodeError
Source§fn clone(&self) -> ExplodedDecodeError
fn clone(&self) -> ExplodedDecodeError
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 ExplodedDecodeError
impl Debug for ExplodedDecodeError
impl Eq for ExplodedDecodeError
Source§impl PartialEq for ExplodedDecodeError
impl PartialEq for ExplodedDecodeError
impl StructuralPartialEq for ExplodedDecodeError
Auto Trait Implementations§
impl Freeze for ExplodedDecodeError
impl RefUnwindSafe for ExplodedDecodeError
impl Send for ExplodedDecodeError
impl Sync for ExplodedDecodeError
impl Unpin for ExplodedDecodeError
impl UnsafeUnpin for ExplodedDecodeError
impl UnwindSafe for ExplodedDecodeError
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.