UnlimitedVarArray

Type Alias UnlimitedVarArray 

Source
pub type UnlimitedVarArray<T> = LimitedVarArray<T, { i32::MAX }>;
Expand description

Type for an XDR array whose length is not predefined and not bounded

Actually an UnlimitedVarArray is limited: it must not have more than i32::MAX characters.

Aliased Typeยง

pub struct UnlimitedVarArray<T>(/* private fields */);