pub struct Link {
pub operation_ref: Option<String>,
pub operation_id: Option<String>,
pub parameters: Option<IndexMap<String, Value>>,
pub request_body: Option<Value>,
pub description: Option<String>,
pub server: Option<Server>,
}
Fields§
§operation_ref: Option<String>
§operation_id: Option<String>
§parameters: Option<IndexMap<String, Value>>
§request_body: Option<Value>
§description: Option<String>
§server: Option<Server>
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Link
impl<'de> Deserialize<'de> for Link
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
Source§impl Diff<Link, LinkDiff, HttpSchemaDiffContext> for Link
impl Diff<Link, LinkDiff, HttpSchemaDiffContext> for Link
fn diff( &self, new: Option<&Link>, context: &HttpSchemaDiffContext, ) -> DiffResult<LinkDiff>
Auto Trait Implementations§
impl Freeze for Link
impl RefUnwindSafe for Link
impl Send for Link
impl Sync for Link
impl Unpin for Link
impl UnwindSafe for Link
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