pub struct UrlContextArguments {
pub urls: Option<Vec<String>>,
}Expand description
Arguments for URL context call
Fields§
§urls: Option<Vec<String>>The URLs to fetch
Trait Implementations§
Source§impl Clone for UrlContextArguments
impl Clone for UrlContextArguments
Source§fn clone(&self) -> UrlContextArguments
fn clone(&self) -> UrlContextArguments
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 UrlContextArguments
impl Debug for UrlContextArguments
Source§impl<'de> Deserialize<'de> for UrlContextArguments
impl<'de> Deserialize<'de> for UrlContextArguments
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for UrlContextArguments
impl RefUnwindSafe for UrlContextArguments
impl Send for UrlContextArguments
impl Sync for UrlContextArguments
impl Unpin for UrlContextArguments
impl UnsafeUnpin for UrlContextArguments
impl UnwindSafe for UrlContextArguments
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