pub struct EnvironmentImportResult {
pub name: String,
pub variables: HashMap<String, EnvironmentVariable>,
pub enabled_count: usize,
pub total_count: usize,
}Expand description
Result of importing a Postman environment
Fields§
§name: StringName of the imported environment
variables: HashMap<String, EnvironmentVariable>Map of variable names to their values and metadata
enabled_count: usizeNumber of enabled variables imported
total_count: usizeTotal number of variables found (enabled + disabled)
Trait Implementations§
Auto Trait Implementations§
impl Freeze for EnvironmentImportResult
impl RefUnwindSafe for EnvironmentImportResult
impl Send for EnvironmentImportResult
impl Sync for EnvironmentImportResult
impl Unpin for EnvironmentImportResult
impl UnsafeUnpin for EnvironmentImportResult
impl UnwindSafe for EnvironmentImportResult
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