pub struct ConnectorJob {
pub context: OclaRequestContext,
pub connector_id: String,
pub payload_ref: String,
pub deadline_ms: Option<u64>,
}Fields§
§context: OclaRequestContext[PII] Request context containing correlation identifiers.
connector_id: String[INTERNAL] Connector identifier.
payload_ref: String[PII] Payload reference that can identify workspace content.
deadline_ms: Option<u64>[INTERNAL] Deadline metric in milliseconds.
Trait Implementations§
Source§impl Clone for ConnectorJob
impl Clone for ConnectorJob
Source§fn clone(&self) -> ConnectorJob
fn clone(&self) -> ConnectorJob
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ConnectorJob
impl Debug for ConnectorJob
Source§impl<'de> Deserialize<'de> for ConnectorJob
impl<'de> Deserialize<'de> for ConnectorJob
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
impl Eq for ConnectorJob
Source§impl PartialEq for ConnectorJob
impl PartialEq for ConnectorJob
Source§impl Serialize for ConnectorJob
impl Serialize for ConnectorJob
impl StructuralPartialEq for ConnectorJob
Auto Trait Implementations§
impl Freeze for ConnectorJob
impl RefUnwindSafe for ConnectorJob
impl Send for ConnectorJob
impl Sync for ConnectorJob
impl Unpin for ConnectorJob
impl UnsafeUnpin for ConnectorJob
impl UnwindSafe for ConnectorJob
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