pub struct UserEntityDetail {
pub urls: Vec<UrlEntity>,
}Expand description
Represents a collection of URL entity information paired with a specific user profile field.
Fields§
§urls: Vec<UrlEntity>Collection of URL entity information.
There should be one of these per URL in the paired field. In the case of the user’s
description, if no URLs are present, this field will still be present, but empty.
Trait Implementations§
Source§impl Clone for UserEntityDetail
impl Clone for UserEntityDetail
Source§fn clone(&self) -> UserEntityDetail
fn clone(&self) -> UserEntityDetail
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 UserEntityDetail
impl Debug for UserEntityDetail
Source§impl Default for UserEntityDetail
impl Default for UserEntityDetail
Source§fn default() -> UserEntityDetail
fn default() -> UserEntityDetail
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for UserEntityDetail
impl<'de> Deserialize<'de> for UserEntityDetail
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 UserEntityDetail
impl RefUnwindSafe for UserEntityDetail
impl Send for UserEntityDetail
impl Sync for UserEntityDetail
impl Unpin for UserEntityDetail
impl UnwindSafe for UserEntityDetail
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