pub struct GroupOutDataLight {
pub group_id: GroupId,
pub parent_group_id: Option<GroupId>,
pub rank: i32,
pub created_time: u128,
pub joined_time: u128,
pub access_by_group_as_member: Option<GroupId>,
pub access_by_parent_group: Option<GroupId>,
pub is_connected_group: bool,
}Fields§
§group_id: GroupId§parent_group_id: Option<GroupId>§rank: i32§created_time: u128§joined_time: u128§access_by_group_as_member: Option<GroupId>§access_by_parent_group: Option<GroupId>§is_connected_group: boolTrait Implementations§
Source§impl From<GroupOutDataLight> for GroupOutDataLightExport
impl From<GroupOutDataLight> for GroupOutDataLightExport
Source§fn from(value: GroupOutDataLight) -> Self
fn from(value: GroupOutDataLight) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for GroupOutDataLight
impl RefUnwindSafe for GroupOutDataLight
impl Send for GroupOutDataLight
impl Sync for GroupOutDataLight
impl Unpin for GroupOutDataLight
impl UnwindSafe for GroupOutDataLight
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