Struct teloxide_core::payloads::StopMessageLiveLocation
source · [−]pub struct StopMessageLiveLocation {
pub chat_id: Recipient,
pub message_id: MessageId,
pub latitude: f64,
pub longitude: f64,
pub reply_markup: Option<ReplyMarkup>,
}Expand description
Use this method to edit live location messages. A location can be edited until its live_period expires or editing is explicitly disabled by a call to StopMessageLiveLocation. On success, the edited Message is returned.
See also: StopMessageLiveLocationInline
Fields
chat_id: RecipientUnique identifier for the target chat or username of the target channel (in the format @channelusername)
message_id: MessageIdIdentifier of the message to edit
latitude: f64Latitude of new location
longitude: f64Longitude of new location
reply_markup: Option<ReplyMarkup>Additional interface options. A JSON-serialized object for an inline keyboard, custom reply keyboard, instructions to remove reply keyboard or to force a reply from the user.
Implementations
Trait Implementations
sourceimpl Clone for StopMessageLiveLocation
impl Clone for StopMessageLiveLocation
sourcefn clone(&self) -> StopMessageLiveLocationⓘNotable traits for StopMessageLiveLocationimpl Payload for StopMessageLiveLocation type Output = Message;
fn clone(&self) -> StopMessageLiveLocationⓘNotable traits for StopMessageLiveLocationimpl Payload for StopMessageLiveLocation type Output = Message;
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresourceimpl Debug for StopMessageLiveLocation
impl Debug for StopMessageLiveLocation
sourceimpl PartialEq<StopMessageLiveLocation> for StopMessageLiveLocation
impl PartialEq<StopMessageLiveLocation> for StopMessageLiveLocation
sourcefn eq(&self, other: &StopMessageLiveLocation) -> bool
fn eq(&self, other: &StopMessageLiveLocation) -> bool
sourceimpl Payload for StopMessageLiveLocation
impl Payload for StopMessageLiveLocation
sourcefn timeout_hint(&self) -> Option<Duration>
fn timeout_hint(&self) -> Option<Duration>
If this payload may take long time to execute (e.g.
GetUpdates with
big timeout), the minimum timeout that should be used. Read moresourceimpl Serialize for StopMessageLiveLocation
impl Serialize for StopMessageLiveLocation
impl StructuralPartialEq for StopMessageLiveLocation
Auto Trait Implementations
impl RefUnwindSafe for StopMessageLiveLocation
impl Send for StopMessageLiveLocation
impl Sync for StopMessageLiveLocation
impl Unpin for StopMessageLiveLocation
impl UnwindSafe for StopMessageLiveLocation
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
