pub struct PathResponseAllOf {
pub id: Option<String>,
pub path: Option<String>,
pub links: Option<HashMap<String, String>>,
}Fields§
§id: Option<String>Alphanumeric string identifying the path. Stable across versions of the routing config.
path: Option<String>The URL path pattern, beginning with /. Maximum 2048 characters.
links: Option<HashMap<String, String>>HATEOAS links to related resources.
Implementations§
Source§impl PathResponseAllOf
impl PathResponseAllOf
pub fn new() -> PathResponseAllOf
Trait Implementations§
Source§impl Clone for PathResponseAllOf
impl Clone for PathResponseAllOf
Source§fn clone(&self) -> PathResponseAllOf
fn clone(&self) -> PathResponseAllOf
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 PathResponseAllOf
impl Debug for PathResponseAllOf
Source§impl Default for PathResponseAllOf
impl Default for PathResponseAllOf
Source§fn default() -> PathResponseAllOf
fn default() -> PathResponseAllOf
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for PathResponseAllOf
impl<'de> Deserialize<'de> for PathResponseAllOf
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 PathResponseAllOf
impl PartialEq for PathResponseAllOf
Source§impl Serialize for PathResponseAllOf
impl Serialize for PathResponseAllOf
impl StructuralPartialEq for PathResponseAllOf
Auto Trait Implementations§
impl Freeze for PathResponseAllOf
impl RefUnwindSafe for PathResponseAllOf
impl Send for PathResponseAllOf
impl Sync for PathResponseAllOf
impl Unpin for PathResponseAllOf
impl UnsafeUnpin for PathResponseAllOf
impl UnwindSafe for PathResponseAllOf
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