pub struct OperationsData {
pub responses: Vec<OperationResponse>,
pub common_file_header: CommonFileHeaderData,
pub module_path: String,
}Expand description
Operations data for template rendering
Fields§
§responses: Vec<OperationResponse>§common_file_header: CommonFileHeaderData§module_path: StringImplementations§
Source§impl OperationsData
impl OperationsData
pub fn new( responses: Vec<OperationResponse>, common_file_header: CommonFileHeaderData, module_path: String, ) -> Self
Trait Implementations§
Source§impl Clone for OperationsData
impl Clone for OperationsData
Source§fn clone(&self) -> OperationsData
fn clone(&self) -> OperationsData
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 OperationsData
impl Debug for OperationsData
Source§impl<'de> Deserialize<'de> for OperationsData
impl<'de> Deserialize<'de> for OperationsData
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 OperationsData
impl RefUnwindSafe for OperationsData
impl Send for OperationsData
impl Sync for OperationsData
impl Unpin for OperationsData
impl UnsafeUnpin for OperationsData
impl UnwindSafe for OperationsData
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