pub struct FlickrAPI { /* private fields */ }
Expand description
Takes care of authentication and provides access to Flickr API methods. The struct can be serialized/deserialized to preserve the auth state between application runs. If the struct is cloned both the old and new instances can be used in parallel.
Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for FlickrAPI
impl<'de> Deserialize<'de> for FlickrAPI
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 FlickrAPI
impl RefUnwindSafe for FlickrAPI
impl Send for FlickrAPI
impl Sync for FlickrAPI
impl Unpin for FlickrAPI
impl UnwindSafe for FlickrAPI
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