pub struct ApplicationOut {
pub created_at: String,
pub id: String,
pub metadata: HashMap<String, String>,
pub name: String,
pub rate_limit: Option<i32>,
pub uid: Option<String>,
pub updated_at: String,
}
Fields§
§created_at: String
§id: String
The app’s ID
metadata: HashMap<String, String>
§name: String
§rate_limit: Option<i32>
§uid: Option<String>
The app’s UID
updated_at: String
Implementations§
Trait Implementations§
Source§impl Clone for ApplicationOut
impl Clone for ApplicationOut
Source§fn clone(&self) -> ApplicationOut
fn clone(&self) -> ApplicationOut
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 ApplicationOut
impl Debug for ApplicationOut
Source§impl Default for ApplicationOut
impl Default for ApplicationOut
Source§fn default() -> ApplicationOut
fn default() -> ApplicationOut
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ApplicationOut
impl<'de> Deserialize<'de> for ApplicationOut
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
Source§impl PartialEq for ApplicationOut
impl PartialEq for ApplicationOut
Source§impl Serialize for ApplicationOut
impl Serialize for ApplicationOut
impl StructuralPartialEq for ApplicationOut
Auto Trait Implementations§
impl Freeze for ApplicationOut
impl RefUnwindSafe for ApplicationOut
impl Send for ApplicationOut
impl Sync for ApplicationOut
impl Unpin for ApplicationOut
impl UnwindSafe for ApplicationOut
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