pub struct PublishIntentProposed {
pub scope_type: String,
pub scope_id: String,
pub target: String,
pub reason: String,
pub summary: String,
pub context: Value,
pub proposed_at: OffsetDateTime,
}Expand description
A proposal to publish results to an external target.
Fields§
§scope_type: StringScope type (e.g. "project", "task").
scope_id: StringID of the scoped entity.
target: StringPublish target identifier.
reason: StringReason for publishing.
summary: StringSummary of what will be published.
context: ValueAdditional context data.
proposed_at: OffsetDateTimeWhen this proposal was created.
Trait Implementations§
Source§impl Clone for PublishIntentProposed
impl Clone for PublishIntentProposed
Source§fn clone(&self) -> PublishIntentProposed
fn clone(&self) -> PublishIntentProposed
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 PublishIntentProposed
impl Debug for PublishIntentProposed
Source§impl<'de> Deserialize<'de> for PublishIntentProposed
impl<'de> Deserialize<'de> for PublishIntentProposed
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 RoutedBody for PublishIntentProposed
impl RoutedBody for PublishIntentProposed
Auto Trait Implementations§
impl Freeze for PublishIntentProposed
impl RefUnwindSafe for PublishIntentProposed
impl Send for PublishIntentProposed
impl Sync for PublishIntentProposed
impl Unpin for PublishIntentProposed
impl UnsafeUnpin for PublishIntentProposed
impl UnwindSafe for PublishIntentProposed
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