pub unsafe trait NSFileProviderPendingSetEnumerator: NSFileProviderEnumerator {
// Provided methods
unsafe fn domainVersion(
&self,
) -> Option<Retained<NSFileProviderDomainVersion>>
where Self: Sized + Message { ... }
unsafe fn refreshInterval(&self) -> NSTimeInterval
where Self: Sized + Message { ... }
unsafe fn isMaximumSizeReached(&self) -> bool
where Self: Sized + Message { ... }
}
Available on crate features
Extension
and NSFileProviderEnumerating
only.Expand description
Provided Methods§
Sourceunsafe fn domainVersion(&self) -> Option<Retained<NSFileProviderDomainVersion>>
Available on crate feature NSFileProviderDomain
only.
unsafe fn domainVersion(&self) -> Option<Retained<NSFileProviderDomainVersion>>
NSFileProviderDomain
only.The version of the domain when the pending set was last refreshed by the system.
This property is updated when the enumeration methods are called on the pending set enumerator. The value is initially nil.
Sourceunsafe fn refreshInterval(&self) -> NSTimeInterval
unsafe fn refreshInterval(&self) -> NSTimeInterval
The amount of time in seconds at which the pending set is refreshed on modifications.
Sourceunsafe fn isMaximumSizeReached(&self) -> bool
unsafe fn isMaximumSizeReached(&self) -> bool
This property is set to YES when the enumeration of the pending set was capped at or below its maximum size. Under normal conditions, the count of items pending sync will get lower as sync progresses, and this variable will eventually be set to NO when the pending set again includes all items pending sync.