pub struct RestOverlay {
pub enabled: bool,
pub method: Option<String>,
pub path: Option<String>,
pub tags: Vec<String>,
pub summary: Option<String>,
pub description: Option<String>,
pub deprecated: bool,
pub path_params: Value,
pub query_params: Value,
pub request_body_schema: Option<Value>,
}Fields§
§enabled: bool§method: Option<String>§path: Option<String>§summary: Option<String>§description: Option<String>§deprecated: bool§path_params: Value§query_params: Value§request_body_schema: Option<Value>Trait Implementations§
Source§impl Clone for RestOverlay
impl Clone for RestOverlay
Source§fn clone(&self) -> RestOverlay
fn clone(&self) -> RestOverlay
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 RestOverlay
impl Debug for RestOverlay
Source§impl<'de> Deserialize<'de> for RestOverlay
impl<'de> Deserialize<'de> for RestOverlay
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 PartialEq for RestOverlay
impl PartialEq for RestOverlay
Source§fn eq(&self, other: &RestOverlay) -> bool
fn eq(&self, other: &RestOverlay) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for RestOverlay
impl Serialize for RestOverlay
impl Eq for RestOverlay
impl StructuralPartialEq for RestOverlay
Auto Trait Implementations§
impl Freeze for RestOverlay
impl RefUnwindSafe for RestOverlay
impl Send for RestOverlay
impl Sync for RestOverlay
impl Unpin for RestOverlay
impl UnsafeUnpin for RestOverlay
impl UnwindSafe for RestOverlay
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.