-
Notifications
You must be signed in to change notification settings - Fork 136
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
der: improve
TeletexStringRef
docs (#1329)
Adds a citation for the quote from the ASN.1 mailing list
- Loading branch information
Showing
1 changed file
with
6 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -34,10 +34,13 @@ macro_rules! impl_teletex_string { | |
/// | ||
/// # Supported characters | ||
/// | ||
/// The standard defines a complex character set allowed in this type. However, quoting the ASN.1 | ||
/// mailing list, "a sizable volume of software in the world treats TeletexString (T61String) as a | ||
/// simple 8-bit string with mostly Windows Latin 1 (superset of iso-8859-1) encoding". | ||
/// The standard defines a complex character set allowed in this type. However, | ||
/// [quoting the ASN.1 mailing list]: | ||
/// | ||
/// > "a sizable volume of software in the world treats TeletexString (T61String) as | ||
/// > a simple 8-bit string with mostly Windows Latin 1 (superset of iso-8859-1) encoding". | ||
/// | ||
/// [quoting the ASN.1 mailing list]: https://www.mail-archive.com/[email protected]/msg00460.html | ||
#[derive(Copy, Clone, Eq, PartialEq, PartialOrd, Ord)] | ||
pub struct TeletexStringRef<'a> { | ||
/// Inner value | ||
|