_5237

Enum _5237 

Source
pub enum _5237 {
Show 24 variants _1, _2, _3, _4, _5, _6, _7, _8, _9, _10, _11, _12, _13, _14, _15, _16, _17, _18, _19, _20, _21, _22, _23, _24,
}
Expand description

Charge category code

Code specifying the category of charges.

Variants§

§

_1

All charges

All amounts calculated by the carrier in accordance with tariffs or in case of special events during the voyage (e.g. Rail - freights costs - additional costs).

§

_2

Additional charges

Charges calculated by the carrier for specific events like re-weighting, re-loading, unexpected operations, services required during the voyage, etc.

§

_3

Transport charges + additional charges

Transport charges plus Additional charges (e.g. for re- loading, re-weighting or unexpected operations) that must be precised in the payment conditions by the consignor (other charges must be taken in account by the consignee).

§

_4

Basic freight

The basic freight payable on the cargo as per tariff.

§

_5

Destination haulage charges

Haulage charges for transporting goods to the destination.

§

_6

Disbursement

Sums paid out by ship’s agent at a port and recovered from the carrier.

§

_7

Destination port charges

Charges payable at the port of destination.

§

_8

Miscellaneous charges

Miscellaneous charges not otherwise categorized.

§

_9

Transport charges up to a specified location

Transport charges to be paid by a specified party for a part of a voyage, i.e. up to a specified location.

§

_10

Origin port charges

Charges payable at the port of origin.

§

_11

Origin haulage charges

Haulage charges for the pickup of goods at origin.

§

_12

Other charges

§

_13

Specific amount payable

Amount that the consignor agrees to be invoiced or to pay. This amount is part of the total charges applied to the consignment.

§

_14

Transport costs (carriage charges)

Monetary amount calculated on the basis of the transport tariffs or contract eventually including charges or other costs.

§

_15

All costs up to a specified location

All amounts to be paid by the consignor for a part of the voyage, i.e. up to a location that must be precised. (The remaining part of the voyage to be paid by the consignee) The amounts are calculated by the carrier in accordance with tariffs or in case of special events during the voyage (e.g. rail - freight costs - additional costs).

§

_16

Weight/valuation charge

Code to indicate weight/valuation charges to be either wholly prepaid or wholly collect.

§

_17

All costs

Description to be provided.

§

_18

Transport costs and supplementary costs

Description to be provided.

§

_19

Supply of certificate of shipment

Charges payable for the supply of a certificate of shipment.

§

_20

Supply of consular formalities or certificate of origin

Charges payable for the supply of consular formalities or certificate of origin.

§

_21

Supply of non-categorised documentation in paper form

Charges payable for the supply of one or more documents in paper form that are not otherwise categorised.

§

_22

Supply of customs formalities, export

Charges payable for the supply of export customs formalities.

§

_23

Supply of customs formalities, transit

Charges payable for the supply of transit customs formalities.

§

_24

Supply of customs formalities, import

Charges payable for the supply of import customs formalities.

Trait Implementations§

Source§

impl Clone for _5237

Source§

fn clone(&self) -> _5237

Returns a duplicate of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for _5237

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl<'de> Deserialize<'de> for _5237

Source§

fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>
where __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
Source§

impl Display for _5237

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
Source§

impl FromStr for _5237

Source§

type Err = ParseError

The associated error which can be returned from parsing.
Source§

fn from_str(s: &str) -> Result<_5237, <Self as FromStr>::Err>

Parses a string s to return a value of this type. Read more
Source§

impl Serialize for _5237

Source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more
Source§

impl TryFrom<&str> for _5237

Source§

type Error = ParseError

The type returned in the event of a conversion error.
Source§

fn try_from(s: &str) -> Result<_5237, <Self as TryFrom<&str>>::Error>

Performs the conversion.

Auto Trait Implementations§

§

impl Freeze for _5237

§

impl RefUnwindSafe for _5237

§

impl Send for _5237

§

impl Sync for _5237

§

impl Unpin for _5237

§

impl UnwindSafe for _5237

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

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

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T> ToString for T
where T: Display + ?Sized,

Source§

fn to_string(&self) -> String

Converts the given value to a String. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,