pub struct ScSpecTypeUdt {
pub name: StringM<60>,
}Expand description
ScSpecTypeUdt is an XDR Struct defines as:
struct SCSpecTypeUDT
{
string name<60>;
};Fields§
§name: StringM<60>Trait Implementations§
Source§impl Clone for ScSpecTypeUdt
impl Clone for ScSpecTypeUdt
Source§fn clone(&self) -> ScSpecTypeUdt
fn clone(&self) -> ScSpecTypeUdt
Returns a duplicate of the value. Read more
1.0.0 · 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 ScSpecTypeUdt
impl Debug for ScSpecTypeUdt
Source§impl Default for ScSpecTypeUdt
impl Default for ScSpecTypeUdt
Source§fn default() -> ScSpecTypeUdt
fn default() -> ScSpecTypeUdt
Returns the “default value” for a type. Read more
Source§impl Hash for ScSpecTypeUdt
impl Hash for ScSpecTypeUdt
Source§impl Ord for ScSpecTypeUdt
impl Ord for ScSpecTypeUdt
Source§fn cmp(&self, other: &ScSpecTypeUdt) -> Ordering
fn cmp(&self, other: &ScSpecTypeUdt) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for ScSpecTypeUdt
impl PartialEq for ScSpecTypeUdt
Source§impl PartialOrd for ScSpecTypeUdt
impl PartialOrd for ScSpecTypeUdt
Source§impl ReadXdr for ScSpecTypeUdt
impl ReadXdr for ScSpecTypeUdt
Source§fn read_xdr<R>(r: &mut Limited<R>) -> Result<ScSpecTypeUdt, Error>where
R: Read,
fn read_xdr<R>(r: &mut Limited<R>) -> Result<ScSpecTypeUdt, Error>where
R: Read,
Read the XDR and construct the type. Read more
Source§fn read_xdr_to_end<R>(r: &mut Limited<R>) -> Result<Self, Error>where
R: Read,
fn read_xdr_to_end<R>(r: &mut Limited<R>) -> Result<Self, Error>where
R: Read,
Read the XDR and construct the type, and consider it an error if the
read does not completely consume the read implementation. Read more
Source§fn read_xdr_into<R>(&mut self, r: &mut Limited<R>) -> Result<(), Error>where
R: Read,
fn read_xdr_into<R>(&mut self, r: &mut Limited<R>) -> Result<(), Error>where
R: Read,
Read the XDR and construct the type. Read more
Source§fn read_xdr_into_to_end<R>(&mut self, r: &mut Limited<R>) -> Result<(), Error>where
R: Read,
fn read_xdr_into_to_end<R>(&mut self, r: &mut Limited<R>) -> Result<(), Error>where
R: Read,
Read the XDR into the existing value, and consider it an error if the
read does not completely consume the read implementation. Read more
Source§fn read_xdr_iter<R>(r: &mut Limited<R>) -> ReadXdrIter<&mut R, Self> ⓘwhere
R: Read,
fn read_xdr_iter<R>(r: &mut Limited<R>) -> ReadXdrIter<&mut R, Self> ⓘwhere
R: Read,
Create an iterator that reads the read implementation as a stream of
values that are read into the implementing type. Read more
Source§impl WriteXdr for ScSpecTypeUdt
impl WriteXdr for ScSpecTypeUdt
impl Eq for ScSpecTypeUdt
impl StructuralPartialEq for ScSpecTypeUdt
Auto Trait Implementations§
impl Freeze for ScSpecTypeUdt
impl RefUnwindSafe for ScSpecTypeUdt
impl Send for ScSpecTypeUdt
impl Sync for ScSpecTypeUdt
impl Unpin for ScSpecTypeUdt
impl UnwindSafe for ScSpecTypeUdt
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