Enum magnus::encoding::MbcLen

source ·
pub enum MbcLen {
    CharFound(usize),
    NeedMore(usize),
    Invalid,
}
Expand description

Return value for RbEncoding::precise_mbclen.

Variants§

§

CharFound(usize)

Found a valid char, value is the char’s length.

§

NeedMore(usize)

The slice ended before the end of the current char. Value is the theoretical total length of the char.

§

Invalid

The bytes at the start of the slice are not valid for the encoding.

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.