pub struct ConfigV2Internal {
pub blob_accessible: Arc<AtomicBool>,
}Expand description
Internal runtime configuration.
Fields§
§blob_accessible: Arc<AtomicBool>It’s possible to access the raw or more blob objects.
Implementations§
Source§impl ConfigV2Internal
impl ConfigV2Internal
Sourcepub fn blob_accessible(&self) -> bool
pub fn blob_accessible(&self) -> bool
Get the auto-probe flag.
Sourcepub fn set_blob_accessible(&self, accessible: bool)
pub fn set_blob_accessible(&self, accessible: bool)
Set the auto-probe flag.
Trait Implementations§
Source§impl Clone for ConfigV2Internal
impl Clone for ConfigV2Internal
Source§fn clone(&self) -> ConfigV2Internal
fn clone(&self) -> ConfigV2Internal
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 moreSource§impl Debug for ConfigV2Internal
impl Debug for ConfigV2Internal
Source§impl Default for ConfigV2Internal
impl Default for ConfigV2Internal
Source§impl PartialEq for ConfigV2Internal
impl PartialEq for ConfigV2Internal
impl Eq for ConfigV2Internal
Auto Trait Implementations§
impl Freeze for ConfigV2Internal
impl RefUnwindSafe for ConfigV2Internal
impl Send for ConfigV2Internal
impl Sync for ConfigV2Internal
impl Unpin for ConfigV2Internal
impl UnwindSafe for ConfigV2Internal
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