pub struct PostmanEnvironment {
pub id: Option<String>,
pub name: Option<String>,
pub values: Vec<EnvironmentValue>,
}Expand description
Postman Environment structure from JSON files
Fields§
§id: Option<String>Environment ID (if specified)
name: Option<String>Environment name
values: Vec<EnvironmentValue>Array of environment variables
Trait Implementations§
Source§impl Debug for PostmanEnvironment
impl Debug for PostmanEnvironment
Source§impl<'de> Deserialize<'de> for PostmanEnvironment
impl<'de> Deserialize<'de> for PostmanEnvironment
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 PostmanEnvironment
impl RefUnwindSafe for PostmanEnvironment
impl Send for PostmanEnvironment
impl Sync for PostmanEnvironment
impl Unpin for PostmanEnvironment
impl UnsafeUnpin for PostmanEnvironment
impl UnwindSafe for PostmanEnvironment
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