pub struct UnsupportedEndpoint {
pub path: String,
pub method: String,
pub content_type: String,
}Expand description
Details about an unsupported endpoint
Fields§
§path: StringHTTP path (e.g., “/api/upload”)
method: StringHTTP method (e.g., “POST”)
content_type: StringContent type that caused the skip (e.g., “multipart/form-data”)
Trait Implementations§
Source§impl Clone for UnsupportedEndpoint
impl Clone for UnsupportedEndpoint
Source§fn clone(&self) -> UnsupportedEndpoint
fn clone(&self) -> UnsupportedEndpoint
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for UnsupportedEndpoint
impl RefUnwindSafe for UnsupportedEndpoint
impl Send for UnsupportedEndpoint
impl Sync for UnsupportedEndpoint
impl Unpin for UnsupportedEndpoint
impl UnwindSafe for UnsupportedEndpoint
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