pub struct DeleteSecret<'a> {
pub account_identifier: &'a str,
pub script_name: &'a str,
pub secret_name: &'a str,
}Expand description
Delete Secret https://api.cloudflare.com/#worker-delete-secret
Fields§
§account_identifier: &'a straccount id of owner of the script
script_name: &'a strthe name of the script to remove the secret from
secret_name: &'a strthe variable name of the secret
Trait Implementations§
Auto Trait Implementations§
impl<'a> Freeze for DeleteSecret<'a>
impl<'a> RefUnwindSafe for DeleteSecret<'a>
impl<'a> Send for DeleteSecret<'a>
impl<'a> Sync for DeleteSecret<'a>
impl<'a> Unpin for DeleteSecret<'a>
impl<'a> UnwindSafe for DeleteSecret<'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