// This module and its contents are visible as a workaround for:
// https://github.com/amazon-ion/ion-rust/issues/484
/// Constants for Ion v1.0
pubmodv1_0{/// Ion Version Marker byte sequence
pubconstIVM:[u8;4]=[0xE0,0x01,0x00,0xEA];/// Constants for interpreting the length (`L`) code of binary values
pubmodlength_codes{pubconstNULL:u8=15;pubconstVAR_UINT:u8=14;}}pubmodv1_1{/// Ion Version Marker byte sequence
pubconstIVM:[u8;4]=[0xE0,0x01,0x01,0xEA];}