pub struct UniqueBulbGroupId { /* private fields */ }
Expand description
Uniquely identifies a bulb group in the Inertial
space. This consists of
the concatenation of the ID of the bulb group, and the ID of the traffic
light that contains the bulb group.
String representation of this ID is:
“traffic_light_id().string()
-bulb_group_id.string()
”
Implementations§
Source§impl UniqueBulbGroupId
impl UniqueBulbGroupId
Sourcepub fn traffic_light_id(&self) -> String
pub fn traffic_light_id(&self) -> String
Get the traffic light id of the UniqueBulbGroupId.
§Return
The traffic light id of the UniqueBulbGroupId.
Sourcepub fn bulb_group_id(&self) -> String
pub fn bulb_group_id(&self) -> String
Sourcepub fn string(&self) -> String
pub fn string(&self) -> String
Get the string representation of the UniqueBulbGroupId.
§Return
The string representation of the UniqueBulbGroupId.
Auto Trait Implementations§
impl Freeze for UniqueBulbGroupId
impl RefUnwindSafe for UniqueBulbGroupId
impl !Send for UniqueBulbGroupId
impl !Sync for UniqueBulbGroupId
impl Unpin for UniqueBulbGroupId
impl UnwindSafe for UniqueBulbGroupId
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