pub struct PhotoSize {
pub file_id: String,
pub file_unique_id: String,
pub height: i64,
pub width: i64,
pub file_size: Option<i64>,
}
Expand description
Represents a size of a photo or a file / sticker thumbnail.
Fields§
§file_id: String
Identifier of the file.
Can be used to download or reuse the file.
file_unique_id: String
Unique identifier of the file.
It is supposed to be the same over time and for different bots. Can’t be used to download or reuse the file.
height: i64
Height of the photo.
width: i64
Width of the photo.
file_size: Option<i64>
File size in bytes.
Implementations§
Source§impl PhotoSize
impl PhotoSize
Sourcepub fn new<A, B>(
file_id: A,
file_unique_id: B,
height: i64,
width: i64,
) -> PhotoSize
pub fn new<A, B>( file_id: A, file_unique_id: B, height: i64, width: i64, ) -> PhotoSize
Creates a new PhotoSize
.
§Arguments
file_id
- Identifier of the file.file_unique_id
- Unique identifier of the file.height
- Height of the photo.width
- Width of the photo.
Sourcepub fn with_file_size(self, value: i64) -> PhotoSize
pub fn with_file_size(self, value: i64) -> PhotoSize
Trait Implementations§
Source§impl<'de> Deserialize<'de> for PhotoSize
impl<'de> Deserialize<'de> for PhotoSize
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<PhotoSize, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<PhotoSize, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialOrd for PhotoSize
impl PartialOrd for PhotoSize
Source§impl Serialize for PhotoSize
impl Serialize for PhotoSize
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl StructuralPartialEq for PhotoSize
Auto Trait Implementations§
impl Freeze for PhotoSize
impl RefUnwindSafe for PhotoSize
impl Send for PhotoSize
impl Sync for PhotoSize
impl Unpin for PhotoSize
impl UnwindSafe for PhotoSize
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