pub struct TaskLocalVariableApiClient { /* private fields */ }Implementations§
Source§impl TaskLocalVariableApiClient
impl TaskLocalVariableApiClient
pub fn new(configuration: Rc<Configuration>) -> TaskLocalVariableApiClient
Trait Implementations§
Source§impl TaskLocalVariableApi for TaskLocalVariableApiClient
impl TaskLocalVariableApi for TaskLocalVariableApiClient
fn delete_task_local_variable( &self, id: &str, var_name: &str, ) -> Result<(), Error>
fn get_task_local_variable( &self, id: &str, var_name: &str, deserialize_value: Option<bool>, ) -> Result<VariableValueDto, Error>
fn get_task_local_variable_binary( &self, id: &str, var_name: &str, ) -> Result<PathBuf, Error>
fn get_task_local_variables( &self, id: &str, deserialize_values: Option<bool>, ) -> Result<HashMap<String, VariableValueDto>, Error>
fn modify_task_local_variables( &self, id: &str, patch_variables_dto: Option<PatchVariablesDto>, ) -> Result<(), Error>
fn put_task_local_variable( &self, id: &str, var_name: &str, variable_value_dto: Option<VariableValueDto>, ) -> Result<(), Error>
fn set_binary_task_local_variable( &self, id: &str, var_name: &str, data: Option<PathBuf>, value_type: Option<&str>, ) -> Result<(), Error>
Auto Trait Implementations§
impl Freeze for TaskLocalVariableApiClient
impl !RefUnwindSafe for TaskLocalVariableApiClient
impl !Send for TaskLocalVariableApiClient
impl !Sync for TaskLocalVariableApiClient
impl Unpin for TaskLocalVariableApiClient
impl !UnwindSafe for TaskLocalVariableApiClient
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
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more