-
Notifications
You must be signed in to change notification settings - Fork 46
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: added image access qualifier, fixes #28 #30
Conversation
73a6755
to
c9ba1f7
Compare
I just have a few tests to fix up. |
@@ -420,6 +435,20 @@ mod params { | |||
use super::*; | |||
use proc_macro2::TokenStream; | |||
|
|||
pub fn image_access_from_str(s: &str) -> Result<AccessQualifier, &'static str> { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Any reason to not use TryFrom instead?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Just that this is a smaller diff and it follows the style that's already in the module.
I'm on my phone so I may have missed it, but I can't find where a test actually uses it? |
This adds the ability to specify the image access qualifier from the
Image!
macro, or from theImage
type variables themselves.Fixes #28 .