Type Definition substrate_stellar_sdk::compound_types::UnlimitedString[][src]

pub type UnlimitedString = LimitedString<{ i32::MAX }>;
Expand description

Type for an ASCII string whose length is not predefined and not bounded

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