pub struct ReadReturnObjectBuilder { /* private fields */ }Expand description
Builder for ReadReturnObject.
Implementations§
Source§impl ReadReturnObjectBuilder
impl ReadReturnObjectBuilder
Sourcepub fn base_64_encoded(&mut self, value: Option<bool>) -> &mut Self
pub fn base_64_encoded(&mut self, value: Option<bool>) -> &mut Self
Set if the data is base64-encoded
Sourcepub fn eof(&mut self, value: bool) -> &mut Self
pub fn eof(&mut self, value: bool) -> &mut Self
Set if the end-of-file condition occurred while reading.
Sourcepub fn build(&self) -> Result<ReadReturnObject, ReadReturnObjectBuilderError>
pub fn build(&self) -> Result<ReadReturnObject, ReadReturnObjectBuilderError>
Trait Implementations§
Source§impl Clone for ReadReturnObjectBuilder
impl Clone for ReadReturnObjectBuilder
Source§fn clone(&self) -> ReadReturnObjectBuilder
fn clone(&self) -> ReadReturnObjectBuilder
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for ReadReturnObjectBuilder
impl RefUnwindSafe for ReadReturnObjectBuilder
impl Send for ReadReturnObjectBuilder
impl Sync for ReadReturnObjectBuilder
impl Unpin for ReadReturnObjectBuilder
impl UnsafeUnpin for ReadReturnObjectBuilder
impl UnwindSafe for ReadReturnObjectBuilder
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