Struct rkyv::ser::serializers::WriteSerializer[][src]

pub struct WriteSerializer<W: Write> { /* fields omitted */ }

Wraps a type that implements io::Write and equips it with Serializer.

Examples

use rkyv::ser::{serializers::WriteSerializer, Serializer};

let mut serializer = WriteSerializer::new(Vec::new());
assert_eq!(serializer.pos(), 0);
serializer.write(&[0u8, 1u8, 2u8, 3u8]);
assert_eq!(serializer.pos(), 4);
let buf = serializer.into_inner();
assert_eq!(buf.len(), 4);
assert_eq!(buf, vec![0u8, 1u8, 2u8, 3u8]);

Implementations

impl<W: Write> WriteSerializer<W>[src]

pub fn new(inner: W) -> Self[src]

Creates a new serializer from a writer.

pub fn with_pos(inner: W, pos: usize) -> Self[src]

Creates a new serializer from a writer, and assumes that the underlying writer is currently at the given position.

pub fn into_inner(self) -> W[src]

Consumes the serializer and returns the internal writer used to create it.

Trait Implementations

impl<W: Write> Fallible for WriteSerializer<W>[src]

type Error = Error

The error produced by any failing methods

impl<W: Write + Seek> SeekSerializer for WriteSerializer<W>[src]

fn seek(&mut self, offset: usize) -> Result<(), Self::Error>[src]

Seeks the serializer to the given absolute position.

fn serialize_front<T: Serialize<Self>>(
    &mut self,
    value: &T
) -> Result<usize, Self::Error>
[src]

Archives the given value at the nearest available position. If the serializer is already aligned, it will archive it at the current position. Read more

fn serialize_unsized_front<T: SerializeUnsized<Self> + ?Sized>(
    &mut self,
    value: &T
) -> Result<usize, Self::Error> where
    T::Metadata: Serialize<Self>,
    T::Archived: ArchivePointee<ArchivedMetadata = Archived<T::Metadata>>, 
[src]

Archives a reference to the given value at the nearest available position. If the serializer is already aligned, it will archive it at the current position. Read more

impl<W: Write> Serializer for WriteSerializer<W>[src]

fn pos(&self) -> usize[src]

Returns the current position of the serializer.

fn write(&mut self, bytes: &[u8]) -> Result<(), Self::Error>[src]

Attempts to write the given bytes to the serializer.

fn pad(&mut self, padding: usize) -> Result<(), Self::Error>[src]

Advances the given number of bytes as padding.

fn align(&mut self, align: usize) -> Result<usize, Self::Error>[src]

Aligns the position of the serializer to the given alignment.

fn align_for<T>(&mut self) -> Result<usize, Self::Error>[src]

Aligns the position of the serializer to be suitable to write the given type.

unsafe fn resolve_aligned<T: Archive + ?Sized>(
    &mut self,
    value: &T,
    resolver: T::Resolver
) -> Result<usize, Self::Error>
[src]

Resolves the given value with its resolver and writes the archived type. Read more

fn serialize_value<T: Serialize<Self>>(
    &mut self,
    value: &T
) -> Result<usize, Self::Error>
[src]

Archives the given object and returns the position it was archived at.

unsafe fn resolve_unsized_aligned<T: ArchiveUnsized + ?Sized>(
    &mut self,
    value: &T,
    to: usize,
    metadata_resolver: T::MetadataResolver
) -> Result<usize, Self::Error>
[src]

Resolves the given reference with its resolver and writes the archived reference. Read more

fn serialize_unsized_value<T: SerializeUnsized<Self> + ?Sized>(
    &mut self,
    value: &T
) -> Result<usize, Self::Error>
[src]

Archives a reference to the given object and returns the position it was archived at.

Auto Trait Implementations

impl<W> RefUnwindSafe for WriteSerializer<W> where
    W: RefUnwindSafe

impl<W> Send for WriteSerializer<W> where
    W: Send

impl<W> Sync for WriteSerializer<W> where
    W: Sync

impl<W> Unpin for WriteSerializer<W> where
    W: Unpin

impl<W> UnwindSafe for WriteSerializer<W> where
    W: UnwindSafe

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

pub fn type_id(&self) -> TypeId[src]

Gets the TypeId of self. Read more

impl<T> ArchivePointee for T[src]

type ArchivedMetadata = ()

The archived version of the pointer metadata for this type.

pub fn pointer_metadata(
    &<T as ArchivePointee>::ArchivedMetadata
) -> <T as Pointee>::Metadata
[src]

Converts some archived metadata to the pointer metadata for itself.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

pub fn borrow(&self) -> &T[src]

Immutably borrows from an owned value. Read more

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

pub fn borrow_mut(&mut self) -> &mut T[src]

Mutably borrows from an owned value. Read more

impl<T> From<T> for T[src]

pub fn from(t: T) -> T[src]

Performs the conversion.

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

pub fn into(self) -> U[src]

Performs the conversion.

impl<T> Pointee for T[src]

type Metadata = ()

The type for metadata in pointers and references to Self.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

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

Performs the conversion.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

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

Performs the conversion.