Struct teaclave_types::FunctionOutputFiles
source · [−]pub struct FunctionOutputFiles { /* private fields */ }
Implementations
sourceimpl FunctionOutputFiles
impl FunctionOutputFiles
pub fn new(entries: HashMap<String, FunctionOutputFile>) -> Self
pub fn iter(&self) -> Iter<'_, String, FunctionOutputFile>
pub fn iter_mut(&mut self) -> IterMut<'_, String, FunctionOutputFile>
pub fn len(&self) -> usize
pub fn is_empty(&self) -> bool
Trait Implementations
sourceimpl Clone for FunctionOutputFiles
impl Clone for FunctionOutputFiles
sourcefn clone(&self) -> FunctionOutputFiles
fn clone(&self) -> FunctionOutputFiles
Returns a copy of the value. Read more
1.0.0const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl Debug for FunctionOutputFiles
impl Debug for FunctionOutputFiles
sourceimpl Default for FunctionOutputFiles
impl Default for FunctionOutputFiles
sourcefn default() -> FunctionOutputFiles
fn default() -> FunctionOutputFiles
Returns the “default value” for a type. Read more
sourceimpl<'de> Deserialize<'de> for FunctionOutputFiles
impl<'de> Deserialize<'de> for FunctionOutputFiles
sourcefn 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
sourceimpl From<HashMap<String, FunctionOutputFile, RandomState>> for FunctionOutputFiles
impl From<HashMap<String, FunctionOutputFile, RandomState>> for FunctionOutputFiles
sourcefn from(entries: HashMap<String, FunctionOutputFile>) -> FunctionOutputFiles
fn from(entries: HashMap<String, FunctionOutputFile>) -> FunctionOutputFiles
Converts to this type from the input type.
sourceimpl From<TaskFiles<TeaclaveOutputFile>> for FunctionOutputFiles
impl From<TaskFiles<TeaclaveOutputFile>> for FunctionOutputFiles
sourcefn from(files: TaskFiles<TeaclaveOutputFile>) -> Self
fn from(files: TaskFiles<TeaclaveOutputFile>) -> Self
Converts to this type from the input type.
sourceimpl<V> FromIterator<(String, V)> for FunctionOutputFileswhere
V: Into<FunctionOutputFile>,
impl<V> FromIterator<(String, V)> for FunctionOutputFileswhere
V: Into<FunctionOutputFile>,
sourceimpl IntoIterator for FunctionOutputFiles
impl IntoIterator for FunctionOutputFiles
type Item = (String, FunctionOutputFile)
type Item = (String, FunctionOutputFile)
The type of the elements being iterated over.
type IntoIter = IntoIter<String, FunctionOutputFile>
type IntoIter = IntoIter<String, FunctionOutputFile>
Which kind of iterator are we turning this into?
sourcefn into_iter(self) -> IntoIter<String, FunctionOutputFile>
fn into_iter(self) -> IntoIter<String, FunctionOutputFile>
Creates an iterator from a value. Read more
sourceimpl Serialize for FunctionOutputFiles
impl Serialize for FunctionOutputFiles
Auto Trait Implementations
impl RefUnwindSafe for FunctionOutputFiles
impl Send for FunctionOutputFiles
impl Sync for FunctionOutputFiles
impl Unpin for FunctionOutputFiles
impl UnwindSafe for FunctionOutputFiles
Blanket Implementations
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstablefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> IntoRequest<T> for T
impl<T> IntoRequest<T> for T
sourcefn into_request(self) -> Request<T>
fn into_request(self) -> Request<T>
Wrap the input message
T
in a tonic::Request
impl<T> ToOwned for Twhere
T: Clone,
impl<T> ToOwned for Twhere
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
fn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
Uses borrowed data to replace owned data, usually by cloning. Read more