pub struct DataConnectOperationFailureResponseErrorInfo {
pub message: String,
pub path: Vec<DataConnectErrorPathSegment>,
}Expand description
Individual error entry returned by the GraphQL endpoint.
Fields§
§message: StringError summary message.
path: Vec<DataConnectErrorPathSegment>Path into the GraphQL response that triggered the failure.
Trait Implementations§
Source§impl Clone for DataConnectOperationFailureResponseErrorInfo
impl Clone for DataConnectOperationFailureResponseErrorInfo
Source§fn clone(&self) -> DataConnectOperationFailureResponseErrorInfo
fn clone(&self) -> DataConnectOperationFailureResponseErrorInfo
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 moreSource§impl<'de> Deserialize<'de> for DataConnectOperationFailureResponseErrorInfo
impl<'de> Deserialize<'de> for DataConnectOperationFailureResponseErrorInfo
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for DataConnectOperationFailureResponseErrorInfo
impl PartialEq for DataConnectOperationFailureResponseErrorInfo
Source§fn eq(&self, other: &DataConnectOperationFailureResponseErrorInfo) -> bool
fn eq(&self, other: &DataConnectOperationFailureResponseErrorInfo) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for DataConnectOperationFailureResponseErrorInfo
Auto Trait Implementations§
impl Freeze for DataConnectOperationFailureResponseErrorInfo
impl RefUnwindSafe for DataConnectOperationFailureResponseErrorInfo
impl Send for DataConnectOperationFailureResponseErrorInfo
impl Sync for DataConnectOperationFailureResponseErrorInfo
impl Unpin for DataConnectOperationFailureResponseErrorInfo
impl UnwindSafe for DataConnectOperationFailureResponseErrorInfo
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