pub struct CollectiveItem {
pub id: String,
pub name: String,
pub description: String,
pub workflow_definition: Value,
pub author: String,
pub tags: Vec<String>,
pub rating: f64,
pub rating_count: u32,
pub download_count: u64,
pub shared_at: DateTime<Utc>,
pub privacy_verified: bool,
}Fields§
§id: String§name: String§description: String§workflow_definition: Value§rating: f64§rating_count: u32§download_count: u64§privacy_verified: boolTrait Implementations§
Source§impl Clone for CollectiveItem
impl Clone for CollectiveItem
Source§fn clone(&self) -> CollectiveItem
fn clone(&self) -> CollectiveItem
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 CollectiveItem
impl Debug for CollectiveItem
Auto Trait Implementations§
impl Freeze for CollectiveItem
impl RefUnwindSafe for CollectiveItem
impl Send for CollectiveItem
impl Sync for CollectiveItem
impl Unpin for CollectiveItem
impl UnsafeUnpin for CollectiveItem
impl UnwindSafe for CollectiveItem
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