pub struct DanglingPointer {
pub rule_id: String,
pub list_id: String,
pub stored_id: Value,
pub live_id: Option<String>,
}Expand description
A rule whose stored exception pointer does not match the live container.
live_id is None when no container with that list_id exists on this
stack.
Fields§
§rule_id: String§list_id: String§stored_id: Value§live_id: Option<String>Trait Implementations§
Source§impl Clone for DanglingPointer
impl Clone for DanglingPointer
Source§fn clone(&self) -> DanglingPointer
fn clone(&self) -> DanglingPointer
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 DanglingPointer
impl Debug for DanglingPointer
Source§impl PartialEq for DanglingPointer
impl PartialEq for DanglingPointer
Source§impl Serialize for DanglingPointer
impl Serialize for DanglingPointer
impl StructuralPartialEq for DanglingPointer
Auto Trait Implementations§
impl Freeze for DanglingPointer
impl RefUnwindSafe for DanglingPointer
impl Send for DanglingPointer
impl Sync for DanglingPointer
impl Unpin for DanglingPointer
impl UnsafeUnpin for DanglingPointer
impl UnwindSafe for DanglingPointer
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