Struct libspa::pod::serialize::ArrayPodSerializer
source · 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> RefUnwindSafe for ArrayPodSerializer<O, P>where
O: RefUnwindSafe,
P: 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
O: UnwindSafe,
P: 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