Enum qrcodegen::DataTooLong
source · pub enum DataTooLong {
SegmentTooLong,
DataOverCapacity(usize, usize),
}
Expand description
The error type when the supplied data does not fit any QR Code version.
Ways to handle this exception include:
- Decrease the error correction level if it was greater than
QrCodeEcc::Low
. - If the
encode_segments_advanced()
function was called, then increase the maxversion argument if it was less thanVersion::MAX
. (This advice does not apply to the other factory functions because they search all versions up toVersion::MAX
.) - Split the text data into better or optimal segments in order to reduce the number of bits required.
- Change the text or binary data to be shorter.
- Change the text to fit the character set of a particular segment mode (e.g. alphanumeric).
- Propagate the error upward to the caller/user.
Variants§
Trait Implementations§
source§impl Clone for DataTooLong
impl Clone for DataTooLong
source§fn clone(&self) -> DataTooLong
fn clone(&self) -> DataTooLong
Returns a copy 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 DataTooLong
impl Debug for DataTooLong
source§impl Display for DataTooLong
impl Display for DataTooLong
source§impl Error for DataTooLong
impl Error for DataTooLong
1.30.0 · source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
The lower-level source of this error, if any. Read more
1.0.0 · source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
Auto Trait Implementations§
impl Freeze for DataTooLong
impl RefUnwindSafe for DataTooLong
impl Send for DataTooLong
impl Sync for DataTooLong
impl Unpin for DataTooLong
impl UnwindSafe for DataTooLong
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