pub struct HoppscotchCollection {
pub name: String,
pub requests: Vec<HoppscotchRequest>,
pub folders: Option<Vec<HoppscotchFolder>>,
}
Expand description
Hoppscotch collection format
Fields§
§name: String
§requests: Vec<HoppscotchRequest>
§folders: Option<Vec<HoppscotchFolder>>
Trait Implementations§
Source§impl Clone for HoppscotchCollection
impl Clone for HoppscotchCollection
Source§fn clone(&self) -> HoppscotchCollection
fn clone(&self) -> HoppscotchCollection
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 HoppscotchCollection
impl Debug for HoppscotchCollection
Source§impl<'de> Deserialize<'de> for HoppscotchCollection
impl<'de> Deserialize<'de> for HoppscotchCollection
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 HoppscotchCollection
impl RefUnwindSafe for HoppscotchCollection
impl Send for HoppscotchCollection
impl Sync for HoppscotchCollection
impl Unpin for HoppscotchCollection
impl UnwindSafe for HoppscotchCollection
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