pub enum AddReferenceResult {
Added,
Rejected,
Full(ReferenceDescription),
}Expand description
Result of adding a reference to a browse node.
Variants§
Added
The reference was added
Rejected
The reference does not match the filters and was rejected
Full(ReferenceDescription)
The reference does match the filters, but the node is full.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for AddReferenceResult
impl RefUnwindSafe for AddReferenceResult
impl Send for AddReferenceResult
impl Sync for AddReferenceResult
impl Unpin for AddReferenceResult
impl UnsafeUnpin for AddReferenceResult
impl UnwindSafe for AddReferenceResult
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