pub struct Databoard(/* private fields */);Expand description
A thread safe data board.
Implementations§
Source§impl Databoard
impl Databoard
Sourcepub fn with(
parent: Option<Self>,
remappings: Option<RemappingList>,
autoremap: bool,
) -> Self
pub fn with( parent: Option<Self>, remappings: Option<RemappingList>, autoremap: bool, ) -> Self
Creates a Databoard with given parameters.
Sourcepub fn with_parent(parent: Self) -> Self
pub fn with_parent(parent: Self) -> Self
Creates a Databoard using the given parent.
The parents entries are automatically remapped into the new databoard.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Databoard
impl !RefUnwindSafe for Databoard
impl Send for Databoard
impl Sync for Databoard
impl Unpin for Databoard
impl !UnwindSafe for Databoard
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