Struct teaclave_types::FunctionInputFiles
source · [−]pub struct FunctionInputFiles { /* private fields */ }
Implementations
sourceimpl FunctionInputFiles
impl FunctionInputFiles
pub fn new(entries: HashMap<String, FunctionInputFile>) -> Self
pub fn iter(&self) -> Iter<'_, String, FunctionInputFile>
Trait Implementations
sourceimpl Clone for FunctionInputFiles
impl Clone for FunctionInputFiles
sourcefn clone(&self) -> FunctionInputFiles
fn clone(&self) -> FunctionInputFiles
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 FunctionInputFiles
impl Debug for FunctionInputFiles
sourceimpl Default for FunctionInputFiles
impl Default for FunctionInputFiles
sourcefn default() -> FunctionInputFiles
fn default() -> FunctionInputFiles
Returns the “default value” for a type. Read more
sourceimpl<'de> Deserialize<'de> for FunctionInputFiles
impl<'de> Deserialize<'de> for FunctionInputFiles
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, FunctionInputFile, RandomState>> for FunctionInputFiles
impl From<HashMap<String, FunctionInputFile, RandomState>> for FunctionInputFiles
sourcefn from(entries: HashMap<String, FunctionInputFile>) -> FunctionInputFiles
fn from(entries: HashMap<String, FunctionInputFile>) -> FunctionInputFiles
Converts to this type from the input type.
sourceimpl From<TaskFiles<TeaclaveInputFile>> for FunctionInputFiles
impl From<TaskFiles<TeaclaveInputFile>> for FunctionInputFiles
sourcefn from(files: TaskFiles<TeaclaveInputFile>) -> Self
fn from(files: TaskFiles<TeaclaveInputFile>) -> Self
Converts to this type from the input type.
sourceimpl<V> FromIterator<(String, V)> for FunctionInputFileswhere
V: Into<FunctionInputFile>,
impl<V> FromIterator<(String, V)> for FunctionInputFileswhere
V: Into<FunctionInputFile>,
sourceimpl IntoIterator for FunctionInputFiles
impl IntoIterator for FunctionInputFiles
type Item = (String, FunctionInputFile)
type Item = (String, FunctionInputFile)
The type of the elements being iterated over.
type IntoIter = IntoIter<String, FunctionInputFile>
type IntoIter = IntoIter<String, FunctionInputFile>
Which kind of iterator are we turning this into?
sourcefn into_iter(self) -> IntoIter<String, FunctionInputFile>
fn into_iter(self) -> IntoIter<String, FunctionInputFile>
Creates an iterator from a value. Read more
sourceimpl Serialize for FunctionInputFiles
impl Serialize for FunctionInputFiles
Auto Trait Implementations
impl RefUnwindSafe for FunctionInputFiles
impl Send for FunctionInputFiles
impl Sync for FunctionInputFiles
impl Unpin for FunctionInputFiles
impl UnwindSafe for FunctionInputFiles
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