pub struct WorkersTail {
pub id: String,
pub url: Option<String>,
pub expires_at: DateTime<Utc>,
}Expand description
A Tail is attached to a single Worker and is impermanent https://api.cloudflare.com/#worker-tail-properties
Fields§
§id: String§url: Option<String>§expires_at: DateTime<Utc>Trait Implementations§
Source§impl Clone for WorkersTail
impl Clone for WorkersTail
Source§fn clone(&self) -> WorkersTail
fn clone(&self) -> WorkersTail
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 WorkersTail
impl Debug for WorkersTail
Source§impl<'de> Deserialize<'de> for WorkersTail
impl<'de> Deserialize<'de> for WorkersTail
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
Source§impl<'a> Endpoint<WorkersTail> for SendTailHeartbeat<'a>
impl<'a> Endpoint<WorkersTail> for SendTailHeartbeat<'a>
Source§impl<'a> Endpoint<WorkersTail, (), CreateTailParams> for CreateTail<'a>
impl<'a> Endpoint<WorkersTail, (), CreateTailParams> for CreateTail<'a>
Source§impl PartialEq for WorkersTail
impl PartialEq for WorkersTail
Source§impl Serialize for WorkersTail
impl Serialize for WorkersTail
impl ApiResultTraits for WorkersTail
impl Eq for WorkersTail
impl StructuralPartialEq for WorkersTail
Auto Trait Implementations§
impl Freeze for WorkersTail
impl RefUnwindSafe for WorkersTail
impl Send for WorkersTail
impl Sync for WorkersTail
impl Unpin for WorkersTail
impl UnwindSafe for WorkersTail
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