pub struct AutoArray<'a, T: TypeArray> { /* private fields */ }
Expand description

Auto-release wrapper for pointer-based generic arrays.

This wrapper is used to wrap pointers returned by GetArrayElements. While wrapped, the object can be accessed via the From impl.

AutoArray provides automatic array release through a call to appropriate ReleaseArrayElements when it goes out of scope.

Implementations

Get a reference to the wrapped pointer

Commits the changes to the array, if it is a copy

Don’t commit the changes to the array on release (if it is a copy). This has no effect if the array is not a copy. This method is useful to change the release mode of an array originally created with ReleaseMode::CopyBack.

Indicates if the array is a copy or not

Returns the array size

Trait Implementations

Executes the destructor for this type. Read more
Converts to this type from the input type.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.