pub struct Actor {
pub id: String,
pub user_id: Option<String>,
pub name: Option<String>,
pub username: Option<String>,
pub title: Option<String>,
pub description: Option<String>,
pub is_public: Option<bool>,
pub created_at: Option<DateTime<Utc>>,
pub modified_at: Option<DateTime<Utc>>,
pub extra: Extra,
}Expand description
An Actor on the Apify platform.
Fields§
§id: StringUnique Actor ID.
user_id: Option<String>ID of the user who owns the Actor.
name: Option<String>Technical name of the Actor (used in API paths).
username: Option<String>Username of the Actor’s owner.
title: Option<String>Human-readable title shown in the UI.
description: Option<String>Description of what the Actor does.
is_public: Option<bool>Whether the Actor is publicly available in Apify Store.
created_at: Option<DateTime<Utc>>When the Actor was created.
modified_at: Option<DateTime<Utc>>When the Actor was last modified.
extra: ExtraAny other fields returned by the API.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Actor
impl<'de> Deserialize<'de> for Actor
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
Auto Trait Implementations§
impl Freeze for Actor
impl RefUnwindSafe for Actor
impl Send for Actor
impl Sync for Actor
impl Unpin for Actor
impl UnsafeUnpin for Actor
impl UnwindSafe for Actor
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