pub struct CommunityProfileResponse {
pub id_tag: String,
pub name: String,
pub type: String,
pub profile_pic: Option<String>,
pub created_at: Timestamp,
}Expand description
Response for community profile creation
Fields§
§id_tag: String§name: String§type: String§profile_pic: Option<String>§created_at: TimestampTrait Implementations§
Source§impl Clone for CommunityProfileResponse
impl Clone for CommunityProfileResponse
Source§fn clone(&self) -> CommunityProfileResponse
fn clone(&self) -> CommunityProfileResponse
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 CommunityProfileResponse
impl Debug for CommunityProfileResponse
Auto Trait Implementations§
impl Freeze for CommunityProfileResponse
impl RefUnwindSafe for CommunityProfileResponse
impl Send for CommunityProfileResponse
impl Sync for CommunityProfileResponse
impl Unpin for CommunityProfileResponse
impl UnsafeUnpin for CommunityProfileResponse
impl UnwindSafe for CommunityProfileResponse
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