pub struct SearchProfile {
pub address: Option<String>,
pub name: Option<String>,
pub profile_image: Option<String>,
pub pseudonym: Option<String>,
pub bio: Option<String>,
pub proxy_wallet: Option<String>,
}Expand description
Profile result from search
Fields§
§address: Option<String>User address
name: Option<String>Display name
profile_image: Option<String>Profile image URL
pseudonym: Option<String>User pseudonym
bio: Option<String>User biography
proxy_wallet: Option<String>Proxy wallet address
Trait Implementations§
Source§impl Clone for SearchProfile
impl Clone for SearchProfile
Source§fn clone(&self) -> SearchProfile
fn clone(&self) -> SearchProfile
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 SearchProfile
impl Debug for SearchProfile
Source§impl<'de> Deserialize<'de> for SearchProfile
impl<'de> Deserialize<'de> for SearchProfile
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 SearchProfile
impl RefUnwindSafe for SearchProfile
impl Send for SearchProfile
impl Sync for SearchProfile
impl Unpin for SearchProfile
impl UnsafeUnpin for SearchProfile
impl UnwindSafe for SearchProfile
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