pub struct LineApiProfileResponse {
pub display_name: String,
pub user_id: String,
pub language: Option<String>,
pub picture_url: Option<String>,
pub status_message: Option<String>,
}
Fields§
§display_name: String
§user_id: String
§language: Option<String>
§picture_url: Option<String>
§status_message: Option<String>
Trait Implementations§
Source§impl Clone for LineApiProfileResponse
impl Clone for LineApiProfileResponse
Source§fn clone(&self) -> LineApiProfileResponse
fn clone(&self) -> LineApiProfileResponse
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for LineApiProfileResponse
impl Debug for LineApiProfileResponse
Source§impl Default for LineApiProfileResponse
impl Default for LineApiProfileResponse
Source§fn default() -> LineApiProfileResponse
fn default() -> LineApiProfileResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for LineApiProfileResponse
impl<'de> Deserialize<'de> for LineApiProfileResponse
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 LineApiProfileResponse
impl RefUnwindSafe for LineApiProfileResponse
impl Send for LineApiProfileResponse
impl Sync for LineApiProfileResponse
impl Unpin for LineApiProfileResponse
impl UnwindSafe for LineApiProfileResponse
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