pub enum ListRepositoriesError {
InvalidContinuationToken(String),
InvalidOrder(String),
InvalidSortBy(String),
}Expand description
Errors returned by ListRepositories
Variants§
InvalidContinuationToken(String)
The specified continuation token is not valid.
InvalidOrder(String)
The specified sort order is not valid.
InvalidSortBy(String)
The specified sort by value is not valid.
Implementations§
Source§impl ListRepositoriesError
impl ListRepositoriesError
pub fn from_response( res: BufferedHttpResponse, ) -> RusotoError<ListRepositoriesError>
Trait Implementations§
Source§impl Debug for ListRepositoriesError
impl Debug for ListRepositoriesError
Source§impl Display for ListRepositoriesError
impl Display for ListRepositoriesError
Source§impl Error for ListRepositoriesError
impl Error for ListRepositoriesError
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 ListRepositoriesError
impl PartialEq for ListRepositoriesError
impl StructuralPartialEq for ListRepositoriesError
Auto Trait Implementations§
impl Freeze for ListRepositoriesError
impl RefUnwindSafe for ListRepositoriesError
impl Send for ListRepositoriesError
impl Sync for ListRepositoriesError
impl Unpin for ListRepositoriesError
impl UnwindSafe for ListRepositoriesError
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