pub enum DelegationTarget {
LocalCdp {
port: u16,
},
PlaywrightDaemon {
socket_path: PathBuf,
},
JinaReader {
api_key: Option<String>,
},
Firecrawl {
base_url: Url,
api_key: String,
},
Unavailable {
reason: String,
},
}Variants§
Trait Implementations§
Source§impl Clone for DelegationTarget
impl Clone for DelegationTarget
Source§fn clone(&self) -> DelegationTarget
fn clone(&self) -> DelegationTarget
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 DelegationTarget
impl Debug for DelegationTarget
Source§impl PartialEq for DelegationTarget
impl PartialEq for DelegationTarget
Source§fn eq(&self, other: &DelegationTarget) -> bool
fn eq(&self, other: &DelegationTarget) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for DelegationTarget
Auto Trait Implementations§
impl Freeze for DelegationTarget
impl RefUnwindSafe for DelegationTarget
impl Send for DelegationTarget
impl Sync for DelegationTarget
impl Unpin for DelegationTarget
impl UnsafeUnpin for DelegationTarget
impl UnwindSafe for DelegationTarget
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