pub struct PropertyScope<E>(/* private fields */)
where
E: Executor;
Implementations§
Source§impl<E> PropertyScope<E>where
E: Executor,
impl<E> PropertyScope<E>where
E: Executor,
pub fn new(executor: E) -> Self
Sourcepub async fn property_for_id<S>(
self,
id: PropertyId,
builder: impl FnOnce(PropertyPropertyForIdRequestBuilder<Empty>) -> PropertyPropertyForIdRequestBuilder<S>,
) -> Result<UserPropertyResponse, E::Error>where
S: IsComplete,
pub async fn property_for_id<S>(
self,
id: PropertyId,
builder: impl FnOnce(PropertyPropertyForIdRequestBuilder<Empty>) -> PropertyPropertyForIdRequestBuilder<S>,
) -> Result<UserPropertyResponse, E::Error>where
S: IsComplete,
Sourcepub async fn lookup<S>(
self,
builder: impl FnOnce(PropertyLookupRequestBuilder<Empty>) -> PropertyLookupRequestBuilder<S>,
) -> Result<PropertyLookupResponse, E::Error>where
S: IsComplete,
pub async fn lookup<S>(
self,
builder: impl FnOnce(PropertyLookupRequestBuilder<Empty>) -> PropertyLookupRequestBuilder<S>,
) -> Result<PropertyLookupResponse, E::Error>where
S: IsComplete,
Sourcepub async fn timestamp<S>(
self,
builder: impl FnOnce(PropertyTimestampRequestBuilder<Empty>) -> PropertyTimestampRequestBuilder<S>,
) -> Result<TimestampResponse, E::Error>where
S: IsComplete,
pub async fn timestamp<S>(
self,
builder: impl FnOnce(PropertyTimestampRequestBuilder<Empty>) -> PropertyTimestampRequestBuilder<S>,
) -> Result<TimestampResponse, E::Error>where
S: IsComplete,
Sourcepub async fn for_selections<S>(
self,
builder: impl FnOnce(PropertyRequestBuilder<Empty>) -> PropertyRequestBuilder<S>,
) -> Result<Response, E::Error>where
S: IsComplete,
pub async fn for_selections<S>(
self,
builder: impl FnOnce(PropertyRequestBuilder<Empty>) -> PropertyRequestBuilder<S>,
) -> Result<Response, E::Error>where
S: IsComplete,
Get any property selection
§Description
Requires public access key.
Choose one or more selections (comma separated).
Auto Trait Implementations§
impl<E> Freeze for PropertyScope<E>where
E: Freeze,
impl<E> RefUnwindSafe for PropertyScope<E>where
E: RefUnwindSafe,
impl<E> Send for PropertyScope<E>where
E: Send,
impl<E> Sync for PropertyScope<E>where
E: Sync,
impl<E> Unpin for PropertyScope<E>where
E: Unpin,
impl<E> UnwindSafe for PropertyScope<E>where
E: UnwindSafe,
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