pub struct GroupRoleSetResponse {
pub group_id: u64,
pub user_id: u64,
pub role: String,
pub updated_at: Option<String>,
}Expand description
设置群组成员角色响应
RPC路由: group/role/set
Fields§
§group_id: u64§user_id: u64§role: String§updated_at: Option<String>Trait Implementations§
Source§impl Clone for GroupRoleSetResponse
impl Clone for GroupRoleSetResponse
Source§fn clone(&self) -> GroupRoleSetResponse
fn clone(&self) -> GroupRoleSetResponse
Returns a duplicate of the value. Read more
1.0.0 · 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 GroupRoleSetResponse
impl Debug for GroupRoleSetResponse
Source§impl<'de> Deserialize<'de> for GroupRoleSetResponse
impl<'de> Deserialize<'de> for GroupRoleSetResponse
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for GroupRoleSetResponse
impl RefUnwindSafe for GroupRoleSetResponse
impl Send for GroupRoleSetResponse
impl Sync for GroupRoleSetResponse
impl Unpin for GroupRoleSetResponse
impl UnsafeUnpin for GroupRoleSetResponse
impl UnwindSafe for GroupRoleSetResponse
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