Trait reql::commands::ChangeAt [] [src]

pub trait ChangeAt {
    fn change_at<O, V>(&self, offset: O, value: V) -> Command where O: ToArg, V: ToArg;
}

Change a value in an array at a given index

Note: This command is not yet fully documented. For more information and examples, please see the equivalent command in the official Java driver documentation.

Required Methods

Implementors