pub struct GetUntaggedResult {
pub stat: String,
pub code: i32,
pub message: String,
pub photos: Option<Photos>,
}Expand description
Result from flickr.photos.getUntagged.
Fields§
§stat: String§code: i32§message: String§photos: Option<Photos>Trait Implementations§
Source§impl Debug for GetUntaggedResult
impl Debug for GetUntaggedResult
Source§impl<'de> Deserialize<'de> for GetUntaggedResult
impl<'de> Deserialize<'de> for GetUntaggedResult
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 GetUntaggedResult
impl RefUnwindSafe for GetUntaggedResult
impl Send for GetUntaggedResult
impl Sync for GetUntaggedResult
impl Unpin for GetUntaggedResult
impl UnsafeUnpin for GetUntaggedResult
impl UnwindSafe for GetUntaggedResult
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