pub struct MediaAreaVenue {
pub coordinates: MediaAreaCoordinates,
pub geo: GeoPoint,
pub title: String,
pub address: String,
pub provider: String,
pub venue_id: String,
pub venue_type: String,
}Expand description
Generated from:
mediaAreaVenue#be82db9c coordinates:MediaAreaCoordinates geo:GeoPoint title:string address:string provider:string venue_id:string venue_type:string = MediaAreaFields§
§coordinates: MediaAreaCoordinates§geo: GeoPoint§title: String§address: String§provider: String§venue_id: String§venue_type: StringTrait Implementations§
Source§impl Clone for MediaAreaVenue
impl Clone for MediaAreaVenue
Source§fn clone(&self) -> MediaAreaVenue
fn clone(&self) -> MediaAreaVenue
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 MediaAreaVenue
impl Debug for MediaAreaVenue
Source§impl Deserializable for MediaAreaVenue
impl Deserializable for MediaAreaVenue
Source§fn deserialize(buf: Buffer<'_, '_>) -> Result<Self>
fn deserialize(buf: Buffer<'_, '_>) -> Result<Self>
Read
Self from buf, advancing its position.Source§fn from_bytes(bytes: &[u8]) -> Result<Self>
fn from_bytes(bytes: &[u8]) -> Result<Self>
Convenience: deserialize from a byte slice.
Source§impl From<MediaAreaVenue> for MediaArea
impl From<MediaAreaVenue> for MediaArea
Source§fn from(x: MediaAreaVenue) -> Self
fn from(x: MediaAreaVenue) -> Self
Converts to this type from the input type.
Source§impl Identifiable for MediaAreaVenue
impl Identifiable for MediaAreaVenue
Source§const CONSTRUCTOR_ID: u32 = 0xbe82db9c
const CONSTRUCTOR_ID: u32 = 0xbe82db9c
The constructor ID as specified in the TL schema.
Source§impl PartialEq for MediaAreaVenue
impl PartialEq for MediaAreaVenue
Source§impl Serializable for MediaAreaVenue
impl Serializable for MediaAreaVenue
Source§impl TryFrom<MediaArea> for MediaAreaVenue
impl TryFrom<MediaArea> for MediaAreaVenue
impl StructuralPartialEq for MediaAreaVenue
Auto Trait Implementations§
impl Freeze for MediaAreaVenue
impl RefUnwindSafe for MediaAreaVenue
impl Send for MediaAreaVenue
impl Sync for MediaAreaVenue
impl Unpin for MediaAreaVenue
impl UnsafeUnpin for MediaAreaVenue
impl UnwindSafe for MediaAreaVenue
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