pub struct KintoneError {
pub status: u16,
pub code: String,
pub id: String,
pub message: String,
}Fields§
§status: u16§code: String§id: String§message: StringTrait Implementations§
Source§impl Clone for KintoneError
impl Clone for KintoneError
Source§fn clone(&self) -> KintoneError
fn clone(&self) -> KintoneError
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for KintoneError
impl Debug for KintoneError
Source§impl Display for KintoneError
impl Display for KintoneError
Source§impl Error for KintoneError
impl Error for KintoneError
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 From<KintoneError> for ApiError
impl From<KintoneError> for ApiError
Source§fn from(source: KintoneError) -> Self
fn from(source: KintoneError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for KintoneError
impl RefUnwindSafe for KintoneError
impl Send for KintoneError
impl Sync for KintoneError
impl Unpin for KintoneError
impl UnsafeUnpin for KintoneError
impl UnwindSafe for KintoneError
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