pub struct CreateTail<'a> {
pub account_identifier: &'a str,
pub script_name: &'a str,
pub params: CreateTailParams,
}Expand description
Create Tail https://api.cloudflare.com/#worker-create-tail
Fields§
§account_identifier: &'a strAccount ID of owner of the script
script_name: &'a strThe name of the script to tail
params: CreateTailParamsV1 of tailing involved creating a separate URL, which is still possible.
V2 does not involve a separate URL, so it can be omitted.
Trait Implementations§
Source§impl<'a> Debug for CreateTail<'a>
impl<'a> Debug for CreateTail<'a>
Source§impl<'a> Endpoint<WorkersTail, (), CreateTailParams> for CreateTail<'a>
impl<'a> Endpoint<WorkersTail, (), CreateTailParams> for CreateTail<'a>
Auto Trait Implementations§
impl<'a> Freeze for CreateTail<'a>
impl<'a> RefUnwindSafe for CreateTail<'a>
impl<'a> Send for CreateTail<'a>
impl<'a> Sync for CreateTail<'a>
impl<'a> Unpin for CreateTail<'a>
impl<'a> UnwindSafe for CreateTail<'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