pub struct PostmanInfo {
pub name: String,
pub description: String,
pub schema: String,
pub version: Option<String>,
}
Fields§
§name: String
§description: String
§schema: String
§version: Option<String>
Trait Implementations§
Source§impl Clone for PostmanInfo
impl Clone for PostmanInfo
Source§fn clone(&self) -> PostmanInfo
fn clone(&self) -> PostmanInfo
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 PostmanInfo
impl Debug for PostmanInfo
Source§impl<'de> Deserialize<'de> for PostmanInfo
impl<'de> Deserialize<'de> for PostmanInfo
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 PostmanInfo
impl RefUnwindSafe for PostmanInfo
impl Send for PostmanInfo
impl Sync for PostmanInfo
impl Unpin for PostmanInfo
impl UnwindSafe for PostmanInfo
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