pub struct SimilarProfile {
pub name: Option<Option<String>>,
pub link: Option<Option<String>>,
pub summary: Option<Option<String>>,
pub location: Option<Option<String>>,
}Fields§
§name: Option<Option<String>>§link: Option<Option<String>>§summary: Option<Option<String>>§location: Option<Option<String>>Implementations§
Source§impl SimilarProfile
impl SimilarProfile
pub fn new() -> SimilarProfile
Trait Implementations§
Source§impl Clone for SimilarProfile
impl Clone for SimilarProfile
Source§fn clone(&self) -> SimilarProfile
fn clone(&self) -> SimilarProfile
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 SimilarProfile
impl Debug for SimilarProfile
Source§impl Default for SimilarProfile
impl Default for SimilarProfile
Source§fn default() -> SimilarProfile
fn default() -> SimilarProfile
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SimilarProfile
impl<'de> Deserialize<'de> for SimilarProfile
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
Source§impl PartialEq for SimilarProfile
impl PartialEq for SimilarProfile
Source§impl Serialize for SimilarProfile
impl Serialize for SimilarProfile
impl StructuralPartialEq for SimilarProfile
Auto Trait Implementations§
impl Freeze for SimilarProfile
impl RefUnwindSafe for SimilarProfile
impl Send for SimilarProfile
impl Sync for SimilarProfile
impl Unpin for SimilarProfile
impl UnwindSafe for SimilarProfile
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