pub struct ByteSliceBuilder<'a, S: State> { /* private fields */ }Expand description
Builder for constructing an instance of this type
Implementations§
Source§impl<'a> ByteSliceBuilder<'a, Empty>
impl<'a> ByteSliceBuilder<'a, Empty>
Source§impl<'a, S> ByteSliceBuilder<'a, S>
impl<'a, S> ByteSliceBuilder<'a, S>
Sourcepub fn byte_end(
self,
value: impl Into<i64>,
) -> ByteSliceBuilder<'a, SetByteEnd<S>>
pub fn byte_end( self, value: impl Into<i64>, ) -> ByteSliceBuilder<'a, SetByteEnd<S>>
Set the byteEnd field (required)
Source§impl<'a, S> ByteSliceBuilder<'a, S>
impl<'a, S> ByteSliceBuilder<'a, S>
Sourcepub fn byte_start(
self,
value: impl Into<i64>,
) -> ByteSliceBuilder<'a, SetByteStart<S>>
pub fn byte_start( self, value: impl Into<i64>, ) -> ByteSliceBuilder<'a, SetByteStart<S>>
Set the byteStart field (required)
Source§impl<'a, S> ByteSliceBuilder<'a, S>
impl<'a, S> ByteSliceBuilder<'a, S>
Auto Trait Implementations§
impl<'a, S> Freeze for ByteSliceBuilder<'a, S>
impl<'a, S> RefUnwindSafe for ByteSliceBuilder<'a, S>
impl<'a, S> Send for ByteSliceBuilder<'a, S>
impl<'a, S> Sync for ByteSliceBuilder<'a, S>
impl<'a, S> Unpin for ByteSliceBuilder<'a, S>
impl<'a, S> UnsafeUnpin for ByteSliceBuilder<'a, S>
impl<'a, S> UnwindSafe for ByteSliceBuilder<'a, S>
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