This repository is for the active development of the Azure SDK for Rust. For consumers of the SDK we recommend visiting Docs.rs and looking up the docs for any of libraries in the SDK.
SafeDebug is really just a marker trait. The associated derive macro implements Debug in a way to reduce potentially leaking PII. Currently it just outputs the struct or enum name with the non-exhaustive finish e.g., MyModel { .. } but we will expand that later.
SafeDebug is really just a marker trait. The associated derive macro implements
Debug
in a way to reduce potentially leaking PII. Currently it just outputs the struct or enum name with the non-exhaustive finish e.g.,MyModel { .. }
but we will expand that later.Relates to #1707