#[repr(C)]pub struct RelatedUniqueId {
pub group_name: String,
pub unique_ids: Vec<String>,
}
Expand description
Shared struct for pairs in a RelatedRules collection.
- key: Group name.
- value: Unique Ids. This is needed because maps can’t be binded directly.
Fields§
§group_name: String
§unique_ids: Vec<String>
Trait Implementations§
Source§impl ExternType for RelatedUniqueId
impl ExternType for RelatedUniqueId
impl VectorElement for RelatedUniqueId
Auto Trait Implementations§
impl Freeze for RelatedUniqueId
impl RefUnwindSafe for RelatedUniqueId
impl Send for RelatedUniqueId
impl Sync for RelatedUniqueId
impl Unpin for RelatedUniqueId
impl UnwindSafe for RelatedUniqueId
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