pub enum BindResult {
NotBound,
Driver(String),
Composite(Vec<CompositeParent>),
}Variants§
Implementations§
Source§impl BindResult
impl BindResult
pub fn is_bound(&self) -> bool
pub fn driver_url(&self) -> Option<&str>
pub fn composite_parents(&self) -> Option<&[CompositeParent]>
Trait Implementations§
Auto Trait Implementations§
impl Freeze for BindResult
impl RefUnwindSafe for BindResult
impl Send for BindResult
impl Sync for BindResult
impl Unpin for BindResult
impl UnsafeUnpin for BindResult
impl UnwindSafe for BindResult
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