sui-rpc 0.2.0

RPC interface definitions and client for the Sui Sdk
Documentation
pub mod protobuf {
    /// Byte encoded FILE_DESCRIPTOR_SET.
    pub const FILE_DESCRIPTOR_SET: &[u8] = include_bytes!("generated/google.protobuf.fds.bin");

    #[cfg(test)]
    mod tests {
        use super::FILE_DESCRIPTOR_SET;
        use prost::Message as _;

        #[test]
        fn file_descriptor_set_is_valid() {
            prost_types::FileDescriptorSet::decode(FILE_DESCRIPTOR_SET).unwrap();
        }
    }
}

pub mod rpc {
    include!("generated/google.rpc.rs");

    /// Byte encoded FILE_DESCRIPTOR_SET.
    pub const FILE_DESCRIPTOR_SET: &[u8] = include_bytes!("generated/google.rpc.fds.bin");

    // Include generated serde impls
    include!("generated/google.rpc.serde.rs");

    include!("generated/google.rpc.accessors.rs");

    impl ::prost::Name for Status {
        const NAME: &'static str = "Status";
        const PACKAGE: &'static str = "google.rpc";
        fn full_name() -> ::prost::alloc::string::String {
            "google.rpc.Status".into()
        }
        fn type_url() -> ::prost::alloc::string::String {
            "/google.rpc.Status".into()
        }
    }

    impl ::prost::Name for ErrorInfo {
        const NAME: &'static str = "ErrorInfo";
        const PACKAGE: &'static str = "google.rpc";
        fn full_name() -> ::prost::alloc::string::String {
            "google.rpc.ErrorInfo".into()
        }
        fn type_url() -> ::prost::alloc::string::String {
            "/google.rpc.ErrorInfo".into()
        }
    }

    impl ::prost::Name for RetryInfo {
        const NAME: &'static str = "RetryInfo";
        const PACKAGE: &'static str = "google.rpc";
        fn full_name() -> ::prost::alloc::string::String {
            "google.rpc.RetryInfo".into()
        }
        fn type_url() -> ::prost::alloc::string::String {
            "/google.rpc.RetryInfo".into()
        }
    }

    impl ::prost::Name for DebugInfo {
        const NAME: &'static str = "DebugInfo";
        const PACKAGE: &'static str = "google.rpc";
        fn full_name() -> ::prost::alloc::string::String {
            "google.rpc.DebugInfo".into()
        }
        fn type_url() -> ::prost::alloc::string::String {
            "/google.rpc.DebugInfo".into()
        }
    }

    impl ::prost::Name for QuotaFailure {
        const NAME: &'static str = "QuotaFailure";
        const PACKAGE: &'static str = "google.rpc";
        fn full_name() -> ::prost::alloc::string::String {
            "google.rpc.QuotaFailure".into()
        }
        fn type_url() -> ::prost::alloc::string::String {
            "/google.rpc.QuotaFailure".into()
        }
    }

    impl ::prost::Name for PreconditionFailure {
        const NAME: &'static str = "PreconditionFailure";
        const PACKAGE: &'static str = "google.rpc";
        fn full_name() -> ::prost::alloc::string::String {
            "google.rpc.PreconditionFailure".into()
        }
        fn type_url() -> ::prost::alloc::string::String {
            "/google.rpc.PreconditionFailure".into()
        }
    }

    impl ::prost::Name for BadRequest {
        const NAME: &'static str = "BadRequest";
        const PACKAGE: &'static str = "google.rpc";
        fn full_name() -> ::prost::alloc::string::String {
            "google.rpc.BadRequest".into()
        }
        fn type_url() -> ::prost::alloc::string::String {
            "/google.rpc.BadRequest".into()
        }
    }

    impl bad_request::FieldViolation {
        pub fn new<T: Into<String>>(field: T) -> Self {
            Self {
                field: field.into(),
                ..Default::default()
            }
        }

        pub fn new_at<T: Into<String>>(field: T, index: usize) -> Self {
            use std::fmt::Write;

            let mut field = field.into();
            write!(&mut field, "[{index}]").expect("write to String cannot fail");

            Self {
                field,
                ..Default::default()
            }
        }

        // pub fn with_description<T: Into<String>>(mut self, description: T) -> Self {
        //     self.description = description.into();
        //     self
        // }

        // pub fn with_reason<T: Into<String>>(mut self, reason: T) -> Self {
        //     self.reason = reason.into();
        //     self
        // }

        pub fn nested<T: Into<String>>(mut self, field: T) -> Self {
            use std::fmt::Write;

            let mut field = field.into();

            if !self.field.is_empty() {
                write!(
                    &mut field,
                    "{}{}",
                    crate::field::FIELD_SEPARATOR,
                    self.field
                )
                .expect("write to String cannot fail");
            }

            self.field = field;
            self
        }

        pub fn nested_at<T: Into<String>>(mut self, field: T, index: usize) -> Self {
            use std::fmt::Write;

            let mut field = field.into();
            write!(&mut field, "[{index}]").expect("write to String cannot fail");

            if !self.field.is_empty() {
                write!(
                    &mut field,
                    "{}{}",
                    crate::field::FIELD_SEPARATOR,
                    self.field
                )
                .expect("write to String cannot fail");
            }

            self.field = field;
            self
        }
    }

    impl From<bad_request::FieldViolation> for BadRequest {
        fn from(value: bad_request::FieldViolation) -> Self {
            Self {
                field_violations: vec![value],
            }
        }
    }

    impl BadRequest {
        pub fn nested<T: AsRef<str>>(mut self, field: T) -> Self {
            let field = field.as_ref();
            self.field_violations = self
                .field_violations
                .into_iter()
                .map(|violation| violation.nested(field))
                .collect();
            self
        }

        pub fn nested_at<T: AsRef<str>>(mut self, field: T, index: usize) -> Self {
            let field = field.as_ref();
            self.field_violations = self
                .field_violations
                .into_iter()
                .map(|violation| violation.nested_at(field, index))
                .collect();
            self
        }
    }

    impl ::prost::Name for RequestInfo {
        const NAME: &'static str = "RequestInfo";
        const PACKAGE: &'static str = "google.rpc";
        fn full_name() -> ::prost::alloc::string::String {
            "google.rpc.RequestInfo".into()
        }
        fn type_url() -> ::prost::alloc::string::String {
            "/google.rpc.RequestInfo".into()
        }
    }

    impl ::prost::Name for ResourceInfo {
        const NAME: &'static str = "ResourceInfo";
        const PACKAGE: &'static str = "google.rpc";
        fn full_name() -> ::prost::alloc::string::String {
            "google.rpc.ResourceInfo".into()
        }
        fn type_url() -> ::prost::alloc::string::String {
            "/google.rpc.ResourceInfo".into()
        }
    }

    #[cfg(test)]
    mod tests {
        use super::FILE_DESCRIPTOR_SET;
        use prost::Message as _;

        #[test]
        fn file_descriptor_set_is_valid() {
            prost_types::FileDescriptorSet::decode(FILE_DESCRIPTOR_SET).unwrap();
        }
    }
}