pub struct ActorStoreListItem {
pub id: String,
pub name: Option<String>,
pub username: Option<String>,
pub title: Option<String>,
pub extra: Extra,
}Expand description
A single Actor entry as returned by the Apify Store listing.
Fields§
§id: StringUnique Actor ID.
name: Option<String>Technical name of the Actor.
username: Option<String>Username of the Actor’s owner.
title: Option<String>Human-readable title.
extra: ExtraAny other fields returned by the API.
Trait Implementations§
Source§impl Clone for ActorStoreListItem
impl Clone for ActorStoreListItem
Source§fn clone(&self) -> ActorStoreListItem
fn clone(&self) -> ActorStoreListItem
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 ActorStoreListItem
impl Debug for ActorStoreListItem
Source§impl<'de> Deserialize<'de> for ActorStoreListItem
impl<'de> Deserialize<'de> for ActorStoreListItem
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 ActorStoreListItem
impl RefUnwindSafe for ActorStoreListItem
impl Send for ActorStoreListItem
impl Sync for ActorStoreListItem
impl Unpin for ActorStoreListItem
impl UnsafeUnpin for ActorStoreListItem
impl UnwindSafe for ActorStoreListItem
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