Module iceoryx2_bb_system_types::group_name

source ·
Expand description

Relocatable (inter-process shared memory compatible) semantic_string::SemanticString implementations for GroupName.

§Example

use iceoryx2_bb_container::semantic_string::SemanticString;
use iceoryx2_bb_system_types::group_name::*;

let group = GroupName::new(b"some-group").expect("invalid group name");

let invalid_group = GroupName::new(b"some*!?group");
assert!(invalid_group.is_err());

Structs§

Traits§