pub struct BuilderInfo {
pub name: String,
pub driver: Option<String>,
pub is_default: bool,
pub status: Option<String>,
}Expand description
Information about a builder instance
Fields§
§name: StringThe name of the builder
driver: Option<String>The driver used by the builder
is_default: boolWhether this is the current/default builder
status: Option<String>The status of the builder
Trait Implementations§
Source§impl Clone for BuilderInfo
impl Clone for BuilderInfo
Source§fn clone(&self) -> BuilderInfo
fn clone(&self) -> BuilderInfo
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for BuilderInfo
impl RefUnwindSafe for BuilderInfo
impl Send for BuilderInfo
impl Sync for BuilderInfo
impl Unpin for BuilderInfo
impl UnwindSafe for BuilderInfo
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