pub enum CreateDocumentationPartError {
BadRequest(String),
Conflict(String),
LimitExceeded(String),
NotFound(String),
TooManyRequests(String),
Unauthorized(String),
}Expand description
Errors returned by CreateDocumentationPart
Variants§
BadRequest(String)
The submitted request is not valid, for example, the input is incomplete or incorrect. See the accompanying error message for details.
Conflict(String)
The request configuration has conflicts. For details, see the accompanying error message.
LimitExceeded(String)
The request exceeded the rate limit. Retry after the specified time period.
NotFound(String)
The requested resource is not found. Make sure that the request URI is correct.
TooManyRequests(String)
The request has reached its throttling limit. Retry after the specified time period.
The request is denied because the caller has insufficient permissions.
Implementations§
Trait Implementations§
Source§impl Debug for CreateDocumentationPartError
impl Debug for CreateDocumentationPartError
Source§impl Error for CreateDocumentationPartError
impl Error for CreateDocumentationPartError
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
Source§impl PartialEq for CreateDocumentationPartError
impl PartialEq for CreateDocumentationPartError
Source§fn eq(&self, other: &CreateDocumentationPartError) -> bool
fn eq(&self, other: &CreateDocumentationPartError) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for CreateDocumentationPartError
Auto Trait Implementations§
impl Freeze for CreateDocumentationPartError
impl RefUnwindSafe for CreateDocumentationPartError
impl Send for CreateDocumentationPartError
impl Sync for CreateDocumentationPartError
impl Unpin for CreateDocumentationPartError
impl UnwindSafe for CreateDocumentationPartError
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