pub struct Configuration { /* private fields */ }Trait Implementations§
Source§impl Clone for Configuration
impl Clone for Configuration
Source§fn clone(&self) -> Configuration
fn clone(&self) -> Configuration
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 Configuration
impl Debug for Configuration
Source§impl Default for Configuration
impl Default for Configuration
Source§impl NamedConceptConfiguration for Configuration
impl NamedConceptConfiguration for Configuration
Source§fn get_prefix(&self) -> &FileName
fn get_prefix(&self) -> &FileName
Returns the configurations prefix.
Source§fn get_suffix(&self) -> &FileName
fn get_suffix(&self) -> &FileName
Returns the configurations suffix.
Source§fn path_hint(self, value: &Path) -> Self
fn path_hint(self, value: &Path) -> Self
Sets a path hint under which the underlying resources shall be stored. When the concept
uses resources like
iceoryx2_bb_posix::shared_memory::SharedMemory the path will be
ignored.Source§fn get_path_hint(&self) -> &Path
fn get_path_hint(&self) -> &Path
Returns the configurations path hint.
Source§fn path_for(&self, value: &FileName) -> FilePath
fn path_for(&self, value: &FileName) -> FilePath
Returns the full path for a given value under the given configuration.
Source§impl PartialEq for Configuration
impl PartialEq for Configuration
Source§fn eq(&self, other: &Configuration) -> bool
fn eq(&self, other: &Configuration) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for Configuration
impl StructuralPartialEq for Configuration
Auto Trait Implementations§
impl Freeze for Configuration
impl RefUnwindSafe for Configuration
impl Send for Configuration
impl Sync for Configuration
impl Unpin for Configuration
impl UnsafeUnpin for Configuration
impl UnwindSafe for Configuration
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