pub struct Snippet {
pub content: String,
pub file_path: PathBuf,
pub line_number: usize,
pub operation_id: Option<String>,
}Expand description
Represents a source-mapped snippet of OpenAPI definition.
Fields§
§content: String§file_path: PathBuf§line_number: usize§operation_id: Option<String>Trait Implementations§
Auto Trait Implementations§
impl Freeze for Snippet
impl RefUnwindSafe for Snippet
impl Send for Snippet
impl Sync for Snippet
impl Unpin for Snippet
impl UnwindSafe for Snippet
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