pub struct TensorSliceRequest {
pub max_nodes: usize,
pub t_slice: f32,
pub t_window: f32,
pub lane: TensorSliceLane,
pub standpoint_class: u32,
}Expand description
Standpoint-aligned slice parameters (matches WGSL temporal discard).
Fields§
§max_nodes: usize§t_slice: f32§t_window: f32§lane: TensorSliceLane§standpoint_class: u32Implementations§
Source§impl TensorSliceRequest
impl TensorSliceRequest
pub fn clamp_max_nodes(max_nodes: usize) -> usize
pub fn temporal_passes(&self, tensor_t: f32) -> bool
pub fn requires_identifier_auth(&self) -> bool
Sourcepub fn requires_vault_export(&self) -> bool
pub fn requires_vault_export(&self) -> bool
Vault standpoints export the full sealed graph (identifier lane, no commons filter).
Sourcepub fn export_lane(&self) -> TensorSliceLane
pub fn export_lane(&self) -> TensorSliceLane
Resolve the effective routing lane for cold-path tensor export.
Trait Implementations§
Source§impl Clone for TensorSliceRequest
impl Clone for TensorSliceRequest
Source§fn clone(&self) -> TensorSliceRequest
fn clone(&self) -> TensorSliceRequest
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 TensorSliceRequest
impl Debug for TensorSliceRequest
Source§impl Default for TensorSliceRequest
impl Default for TensorSliceRequest
impl Copy for TensorSliceRequest
Auto Trait Implementations§
impl Freeze for TensorSliceRequest
impl RefUnwindSafe for TensorSliceRequest
impl Send for TensorSliceRequest
impl Sync for TensorSliceRequest
impl Unpin for TensorSliceRequest
impl UnsafeUnpin for TensorSliceRequest
impl UnwindSafe for TensorSliceRequest
Blanket Implementations§
§impl<S, A> Aggregate<Result<S, Error>> for Awhere
A: Aggregate<S>,
impl<S, A> Aggregate<Result<S, Error>> for Awhere
A: Aggregate<S>,
Aggregate shares in an MPC protocol.
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more§impl<T> NoneValue for Twhere
T: Default,
impl<T> NoneValue for Twhere
T: Default,
type NoneType = T
§fn null_value() -> T
fn null_value() -> T
The none-equivalent value.