pub struct DirectiveApplicationArg {
pub name: String,
pub value: Option<String>,
}Expand description
A single argument on a directive application.
Fields§
§name: String§value: Option<String>Trait Implementations§
Source§impl Clone for DirectiveApplicationArg
impl Clone for DirectiveApplicationArg
Source§fn clone(&self) -> DirectiveApplicationArg
fn clone(&self) -> DirectiveApplicationArg
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 DirectiveApplicationArg
impl Debug for DirectiveApplicationArg
Source§impl<'de> Deserialize<'de> for DirectiveApplicationArg
impl<'de> Deserialize<'de> for DirectiveApplicationArg
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
Auto Trait Implementations§
impl Freeze for DirectiveApplicationArg
impl RefUnwindSafe for DirectiveApplicationArg
impl Send for DirectiveApplicationArg
impl Sync for DirectiveApplicationArg
impl Unpin for DirectiveApplicationArg
impl UnsafeUnpin for DirectiveApplicationArg
impl UnwindSafe for DirectiveApplicationArg
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