pub struct ProjectSetResult {
pub fields: Vec<String>,
pub project: ProjectSummary,
}Expand description
ign project set output model: the read-back record (flat, the
stable agent shape) plus which fields this set touched —
display-only, serde-skipped so it NEVER appears in JSON.
Fields§
§fields: Vec<String>The fields this set touched (human rendering only).
project: ProjectSummaryThe post-set read-back record.
Trait Implementations§
Source§impl Debug for ProjectSetResult
impl Debug for ProjectSetResult
Auto Trait Implementations§
impl Freeze for ProjectSetResult
impl RefUnwindSafe for ProjectSetResult
impl Send for ProjectSetResult
impl Sync for ProjectSetResult
impl Unpin for ProjectSetResult
impl UnsafeUnpin for ProjectSetResult
impl UnwindSafe for ProjectSetResult
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