pub struct ArrayPodSerializer<O: Write + Seek, P: FixedSizedPod> { /* private fields */ }Expand description
This struct handles serializing arrays.
It can be obtained by calling PodSerializer::serialize_array.
The exact number of elements that was specified during that call must be written into it
using its serialize_element function,
followed by calling its end function to finish serialization of the array.
Implementations§
Source§impl<O: Write + Seek, P: FixedSizedPod> ArrayPodSerializer<O, P>
 
impl<O: Write + Seek, P: FixedSizedPod> ArrayPodSerializer<O, P>
Auto Trait Implementations§
impl<O, P> Freeze for ArrayPodSerializer<O, P>where
    O: Freeze,
impl<O, P> RefUnwindSafe for ArrayPodSerializer<O, P>where
    P: RefUnwindSafe,
    O: RefUnwindSafe,
impl<O, P> Send for ArrayPodSerializer<O, P>
impl<O, P> Sync for ArrayPodSerializer<O, P>
impl<O, P> Unpin for ArrayPodSerializer<O, P>
impl<O, P> UnwindSafe for ArrayPodSerializer<O, P>where
    P: UnwindSafe,
    O: UnwindSafe,
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
    T: ?Sized,
 
impl<T> BorrowMut<T> for Twhere
    T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
 
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more