pub struct QueryHttpOpts<'a> {
pub auth_header: Option<SecretId>,
pub experimental_service_host: Option<ServiceId>,
pub name: Option<&'a str>,
pub permissions: Option<isize>,
}
Fields§
§auth_header: Option<SecretId>
Secret used to populate the Authorization HTTP header
experimental_service_host: Option<ServiceId>
A service which must be started before the URL is fetched.
name: Option<&'a str>
File name to use for the file. Defaults to the last part of the URL.
permissions: Option<isize>
Permissions to set on the file.
Trait Implementations§
Source§impl<'a> Debug for QueryHttpOpts<'a>
impl<'a> Debug for QueryHttpOpts<'a>
Source§impl<'a> PartialEq for QueryHttpOpts<'a>
impl<'a> PartialEq for QueryHttpOpts<'a>
impl<'a> StructuralPartialEq for QueryHttpOpts<'a>
Auto Trait Implementations§
impl<'a> Freeze for QueryHttpOpts<'a>
impl<'a> RefUnwindSafe for QueryHttpOpts<'a>
impl<'a> Send for QueryHttpOpts<'a>
impl<'a> Sync for QueryHttpOpts<'a>
impl<'a> Unpin for QueryHttpOpts<'a>
impl<'a> UnwindSafe for QueryHttpOpts<'a>
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