[][src]Struct tbot::types::inline_query::result::Venue

#[must_use]
pub struct Venue<'a> { /* fields omitted */ }

Represents an InlineQueryResultVenue.

Methods

impl<'a> Venue<'a>[src]

pub const fn new(
    title: &'a str,
    (latitude, longitude): (f64, f64),
    address: &'a str
) -> Self
[src]

Constructs a Venue.

pub fn foursquare_id(self, id: &'a str) -> Self[src]

Configures the Foursquare ID.

pub fn foursquare_type(self, foursquare_type: &'a str) -> Self[src]

Configures the Foursquare type.

pub fn thumb(self, thumb: Thumb<'a>) -> Self[src]

Configures the thumb of the venue.

pub fn input_message_content(
    self,
    content: impl Into<InputMessageContent<'a>>
) -> Self
[src]

Configures the content shown after sending the message.

Trait Implementations

impl<'a> Clone for Venue<'a>[src]

impl<'a> Copy for Venue<'a>[src]

impl<'a> Debug for Venue<'a>[src]

impl<'a> From<Venue<'a>> for Kind<'a>[src]

impl<'a> PartialEq<Venue<'a>> for Venue<'a>[src]

impl<'a> Serialize for Venue<'a>[src]

impl<'a> StructuralPartialEq for Venue<'a>[src]

Auto Trait Implementations

impl<'a> RefUnwindSafe for Venue<'a>

impl<'a> Send for Venue<'a>

impl<'a> Sync for Venue<'a>

impl<'a> Unpin for Venue<'a>

impl<'a> UnwindSafe for Venue<'a>

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.