pub enum VkError {
Show 35 variants
UnknownError(String),
ApplicationDisabled(String),
UnknownMethod(String),
InvalidSignature(String),
UserAuthorizationFailed(String),
TooManyRequests(String),
NoPermissionForAction(String),
InvalidRequest(String),
TooManySimilarActions(String),
InternalServerError(String),
TestModeRestrictions(String),
CaptchaRequired(String),
AccessDenied(String),
HttpsRequired(String),
ValidationRequired(String),
PageBlockedOrDeleted(String),
ActionForbiddenForNonStandaloneApps(String),
ActionAllowedOnlyForStandaloneAndOpenAPI(String),
MethodDisabled(String),
UserConfirmationRequired(String),
InvalidCommunityAccessToken(String),
InvalidApplicationAccessToken(String),
MethodCallLimitReached(String),
ProfileIsPrivate(String),
MissingOrInvalidParameter(String),
InvalidApiId(String),
InvalidUserId(String),
InvalidTimestamp(String),
AlbumAccessDenied(String),
AudioAccessDenied(String),
GroupAccessDenied(String),
AlbumFull(String),
ActionForbidden(String),
NoRightsForAdOperations(String),
AdCabinetError(String),
}
Variants§
UnknownError(String)
ApplicationDisabled(String)
UnknownMethod(String)
InvalidSignature(String)
UserAuthorizationFailed(String)
TooManyRequests(String)
NoPermissionForAction(String)
InvalidRequest(String)
TooManySimilarActions(String)
InternalServerError(String)
TestModeRestrictions(String)
CaptchaRequired(String)
AccessDenied(String)
HttpsRequired(String)
ValidationRequired(String)
PageBlockedOrDeleted(String)
ActionForbiddenForNonStandaloneApps(String)
ActionAllowedOnlyForStandaloneAndOpenAPI(String)
MethodDisabled(String)
UserConfirmationRequired(String)
InvalidCommunityAccessToken(String)
InvalidApplicationAccessToken(String)
MethodCallLimitReached(String)
ProfileIsPrivate(String)
MissingOrInvalidParameter(String)
InvalidApiId(String)
InvalidUserId(String)
InvalidTimestamp(String)
AlbumAccessDenied(String)
AudioAccessDenied(String)
GroupAccessDenied(String)
AlbumFull(String)
ActionForbidden(String)
NoRightsForAdOperations(String)
AdCabinetError(String)
Implementations§
Trait Implementations§
Source§impl Error for VkError
impl Error for VkError
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()
Auto Trait Implementations§
impl Freeze for VkError
impl RefUnwindSafe for VkError
impl Send for VkError
impl Sync for VkError
impl Unpin for VkError
impl UnwindSafe for VkError
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