pub struct ConnectBuilder<T = TungsteniteTransport, C = JsonCodec> { /* private fields */ }Expand description
Connects a SessionConfig with options: transport tuning, a custom
transport or codec, a wire recorder. connect
is the same thing with none of them.
§Example
use gemini_genai_rs::prelude::*;
let config = SessionConfig::new("key");
let handle = ConnectBuilder::new(config)
.transport_config(TransportConfig { connect_timeout_secs: 30, ..Default::default() })
.connect()
.await
.unwrap();Implementations§
Source§impl ConnectBuilder
impl ConnectBuilder
Sourcepub fn new(config: SessionConfig) -> Self
pub fn new(config: SessionConfig) -> Self
Create a new builder with default transport and codec.
Source§impl<T: Transport, C: Codec> ConnectBuilder<T, C>
impl<T: Transport, C: Codec> ConnectBuilder<T, C>
Sourcepub fn transport_config(self, tc: TransportConfig) -> Self
pub fn transport_config(self, tc: TransportConfig) -> Self
Set the transport configuration.
Sourcepub fn configure(self, f: impl FnOnce(SessionConfig) -> SessionConfig) -> Self
pub fn configure(self, f: impl FnOnce(SessionConfig) -> SessionConfig) -> Self
Adjust the session config in place — for a builder handed out by
something else (e.g. Client::live).
Sourcepub fn transport<T2: Transport>(self, transport: T2) -> ConnectBuilder<T2, C>
pub fn transport<T2: Transport>(self, transport: T2) -> ConnectBuilder<T2, C>
Use a custom transport implementation.
Sourcepub fn record_wire(self, recorder: Arc<dyn WireRecorder>) -> Self
pub fn record_wire(self, recorder: Arc<dyn WireRecorder>) -> Self
Record every wire byte (both directions) to the given recorder.
Equivalent to SessionConfig::record_wire: the connection wraps the
codec in a RecordingCodec.
Sourcepub fn codec<C2: Codec>(self, codec: C2) -> ConnectBuilder<T, C2>
pub fn codec<C2: Codec>(self, codec: C2) -> ConnectBuilder<T, C2>
Use a custom codec implementation.
Sourcepub async fn connect(self) -> Result<SessionHandle, SessionError>
pub async fn connect(self) -> Result<SessionHandle, SessionError>
Open the connection and return a SessionHandle.
Auto Trait Implementations§
impl<T, C> Freeze for ConnectBuilder<T, C>
impl<T = TungsteniteTransport, C = JsonCodec> !RefUnwindSafe for ConnectBuilder<T, C>
impl<T, C> Send for ConnectBuilder<T, C>
impl<T, C> Sync for ConnectBuilder<T, C>
impl<T, C> Unpin for ConnectBuilder<T, C>
impl<T = TungsteniteTransport, C = JsonCodec> !UnwindSafe for ConnectBuilder<T, C>
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
§impl<T> FutureExt for T
impl<T> FutureExt for T
§fn with_context(self, otel_cx: Context) -> WithContext<Self>
fn with_context(self, otel_cx: Context) -> WithContext<Self>
§fn with_current_context(self) -> WithContext<Self>
fn with_current_context(self) -> WithContext<Self>
§impl<T> FutureExt for T
impl<T> FutureExt for T
§fn with_context(self, otel_cx: Context) -> WithContext<Self>
fn with_context(self, otel_cx: Context) -> WithContext<Self>
§fn with_current_context(self) -> WithContext<Self>
fn with_current_context(self) -> WithContext<Self>
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more§impl<T> IntoRequest<T> for T
impl<T> IntoRequest<T> for T
§fn into_request(self) -> Request<T>
fn into_request(self) -> Request<T>
Wrap the input message
T in a tonic::Request§impl<L> LayerExt<L> for L
impl<L> LayerExt<L> for L
§fn named_layer<S>(&self, service: S) -> Layered<<L as Layer<S>>::Service, S>where
L: Layer<S>,
fn named_layer<S>(&self, service: S) -> Layered<<L as Layer<S>>::Service, S>where
L: Layer<S>,
Applies the layer to a service and wraps it in [
Layered].