Struct dagger_sdk::FunctionCallArgValue
source · pub struct FunctionCallArgValue {
pub proc: Option<Arc<Child>>,
pub selection: Selection,
pub graphql_client: DynGraphQLClient,
}Fields§
§proc: Option<Arc<Child>>§selection: Selection§graphql_client: DynGraphQLClientImplementations§
source§impl FunctionCallArgValue
impl FunctionCallArgValue
sourcepub async fn name(&self) -> Result<String, DaggerError>
pub async fn name(&self) -> Result<String, DaggerError>
The name of the argument.
sourcepub async fn value(&self) -> Result<Json, DaggerError>
pub async fn value(&self) -> Result<Json, DaggerError>
The value of the argument represented as a string of the JSON serialization.
Trait Implementations§
source§impl Clone for FunctionCallArgValue
impl Clone for FunctionCallArgValue
source§fn clone(&self) -> FunctionCallArgValue
fn clone(&self) -> FunctionCallArgValue
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 moreAuto Trait Implementations§
impl !RefUnwindSafe for FunctionCallArgValue
impl !Send for FunctionCallArgValue
impl !Sync for FunctionCallArgValue
impl Unpin for FunctionCallArgValue
impl !UnwindSafe for FunctionCallArgValue
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