pub struct LineWebhookEventMessageLocation {
pub id: String,
pub message_type: String,
pub title: Option<String>,
pub address: Option<String>,
pub latitude: f32,
pub longitude: f32,
}
Fields§
§id: String
§message_type: String
§title: Option<String>
§address: Option<String>
§latitude: f32
§longitude: f32
Trait Implementations§
Source§impl Clone for LineWebhookEventMessageLocation
impl Clone for LineWebhookEventMessageLocation
Source§fn clone(&self) -> LineWebhookEventMessageLocation
fn clone(&self) -> LineWebhookEventMessageLocation
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 Default for LineWebhookEventMessageLocation
impl Default for LineWebhookEventMessageLocation
Source§fn default() -> LineWebhookEventMessageLocation
fn default() -> LineWebhookEventMessageLocation
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for LineWebhookEventMessageLocation
impl<'de> Deserialize<'de> for LineWebhookEventMessageLocation
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 LineWebhookEventMessageLocation
impl RefUnwindSafe for LineWebhookEventMessageLocation
impl Send for LineWebhookEventMessageLocation
impl Sync for LineWebhookEventMessageLocation
impl Unpin for LineWebhookEventMessageLocation
impl UnwindSafe for LineWebhookEventMessageLocation
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