pub struct OperationInfo {
pub name: String,
pub description: String,
pub arguments: Vec<ArgumentInfo>,
pub return_type: String,
pub is_mutating: bool,
pub estimated_duration_ms: Option<u64>,
}
Expand description
Operation information response
Fields§
§name: String
§description: String
§arguments: Vec<ArgumentInfo>
§return_type: String
§is_mutating: bool
§estimated_duration_ms: Option<u64>
Trait Implementations§
Source§impl Clone for OperationInfo
impl Clone for OperationInfo
Source§fn clone(&self) -> OperationInfo
fn clone(&self) -> OperationInfo
Returns a copy 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 Debug for OperationInfo
impl Debug for OperationInfo
Source§impl<'de> Deserialize<'de> for OperationInfo
impl<'de> Deserialize<'de> for OperationInfo
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 From<OperationMetadata> for OperationInfo
impl From<OperationMetadata> for OperationInfo
Source§fn from(metadata: OperationMetadata) -> Self
fn from(metadata: OperationMetadata) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for OperationInfo
impl RefUnwindSafe for OperationInfo
impl Send for OperationInfo
impl Sync for OperationInfo
impl Unpin for OperationInfo
impl UnwindSafe for OperationInfo
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