pub struct PathDoc {
pub path: String,
pub methods: Vec<String>,
pub capability: String,
pub description: String,
}Expand description
One route an engine answers, described for the help endpoint.
Fields§
§path: String§methods: Vec<String>§capability: String§description: StringImplementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for PathDoc
impl<'de> Deserialize<'de> for PathDoc
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 PathDoc
impl RefUnwindSafe for PathDoc
impl Send for PathDoc
impl Sync for PathDoc
impl Unpin for PathDoc
impl UnsafeUnpin for PathDoc
impl UnwindSafe for PathDoc
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