pub struct ProxyBuilder<'a, T = ()> { /* private fields */ }
Expand description
Builder for proxies.
Implementations§
Source§impl<'a, T> ProxyBuilder<'a, T>
impl<'a, T> ProxyBuilder<'a, T>
Sourcepub fn new_bare(conn: &Connection) -> Self
pub fn new_bare(conn: &Connection) -> Self
Create a new ProxyBuilder
for the given connection.
Source§impl<'a, T> ProxyBuilder<'a, T>
impl<'a, T> ProxyBuilder<'a, T>
Sourcepub fn destination<D>(self, destination: D) -> Result<Self>
pub fn destination<D>(self, destination: D) -> Result<Self>
Set the proxy destination address.
Sourcepub fn cache_properties(self, cache: CacheProperties) -> Self
pub fn cache_properties(self, cache: CacheProperties) -> Self
Set the properties caching mode.
Sourcepub fn uncached_properties(self, properties: &[&'a str]) -> Self
pub fn uncached_properties(self, properties: &[&'a str]) -> Self
Specify a set of properties (by name) which should be excluded from caching.
Source§impl<'a, T> ProxyBuilder<'a, T>where
T: ProxyDefault,
impl<'a, T> ProxyBuilder<'a, T>where
T: ProxyDefault,
Sourcepub fn new(conn: &Connection) -> Self
pub fn new(conn: &Connection) -> Self
Create a new ProxyBuilder
for the given connection.
Trait Implementations§
Source§impl<'a, T> Clone for ProxyBuilder<'a, T>
impl<'a, T> Clone for ProxyBuilder<'a, T>
Auto Trait Implementations§
impl<'a, T> Freeze for ProxyBuilder<'a, T>
impl<'a, T = ()> !RefUnwindSafe for ProxyBuilder<'a, T>
impl<'a, T> Send for ProxyBuilder<'a, T>where
T: Send,
impl<'a, T> Sync for ProxyBuilder<'a, T>where
T: Sync,
impl<'a, T> Unpin for ProxyBuilder<'a, T>where
T: Unpin,
impl<'a, T = ()> !UnwindSafe for ProxyBuilder<'a, T>
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