pub struct BloopClientBuilder { /* private fields */ }Expand description
Builder for BloopClient.
Implementations§
Source§impl BloopClientBuilder
impl BloopClientBuilder
pub fn new() -> Self
pub fn endpoint(self, endpoint: impl Into<String>) -> Self
pub fn project_key(self, key: impl Into<String>) -> Self
pub fn environment(self, env: impl Into<String>) -> Self
pub fn release(self, release: impl Into<String>) -> Self
pub fn source(self, source: impl Into<String>) -> Self
pub fn max_buffer_size(self, size: usize) -> Self
pub fn build(self) -> Result<BloopClient, String>
Trait Implementations§
Source§impl Clone for BloopClientBuilder
impl Clone for BloopClientBuilder
Source§fn clone(&self) -> BloopClientBuilder
fn clone(&self) -> BloopClientBuilder
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 moreSource§impl Debug for BloopClientBuilder
impl Debug for BloopClientBuilder
Auto Trait Implementations§
impl Freeze for BloopClientBuilder
impl RefUnwindSafe for BloopClientBuilder
impl Send for BloopClientBuilder
impl Sync for BloopClientBuilder
impl Unpin for BloopClientBuilder
impl UnwindSafe for BloopClientBuilder
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