pub struct OwnedTagList(pub Vec<u8>);
Expand description

An owned version of the TagList, implemented purely in rust.

The actual data is stored in the same way as in TagList and therefore uses the same accessing logic. But it manages its own memory using a Vec<u8>

Tuple Fields§

§0: Vec<u8>

Implementations§

Constructs a new, empty OwnedTagList.

The list will not allocate until elements are pushed onto it. (It just calls Vec::new)

Add a new key-value pair to the list

This method does not check duplicate keys. It simply pushes the new pair.

Panics

Panics if any of the arguments contains a NUL character. This could have been handled by returning an error, but for now I chose not to.

Trait Implementations§

Returns a copy of the value. Read more
Performs copy-assignment from source. Read more
Formats the value using the given formatter. Read more

Copy a TagList’s memory into an owned Vec

The type of the elements being iterated over.
Which kind of iterator are we turning this into?
Creates an iterator from a value. Read more

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 resulting type after obtaining ownership.
Creates owned data from borrowed data, usually by cloning. Read more
Uses borrowed data to replace owned data, usually by cloning. Read more
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.