pub struct FakeAttributionDataProvider {
pub attribution_data: AttributionData,
}
Fields§
§attribution_data: AttributionData
Trait Implementations§
Source§impl AttributionDataProvider for FakeAttributionDataProvider
impl AttributionDataProvider for FakeAttributionDataProvider
Source§fn get_attribution_data(&self) -> BoxFuture<'_, Result<AttributionData, Error>>
fn get_attribution_data(&self) -> BoxFuture<'_, Result<AttributionData, Error>>
Collects and returns a structure with all memory resources and attribution specifications.
Source§fn for_each_resource(
&self,
visitor: &mut impl ResourcesVisitor,
) -> Result<(), Error>
fn for_each_resource( &self, visitor: &mut impl ResourcesVisitor, ) -> Result<(), Error>
Enumerates Jobs, Processes and VMOs and call back the visitor.
Auto Trait Implementations§
impl Freeze for FakeAttributionDataProvider
impl RefUnwindSafe for FakeAttributionDataProvider
impl Send for FakeAttributionDataProvider
impl Sync for FakeAttributionDataProvider
impl Unpin for FakeAttributionDataProvider
impl UnwindSafe for FakeAttributionDataProvider
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