-
Notifications
You must be signed in to change notification settings - Fork 4
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
Support std IO #26
Merged
Support std IO #26
Conversation
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
change get_next_base return type , when has not next page condition return `None`, or try get next page data, if success return `Some(Ok(_))`, failed return `Some(Err(_))`
before return `T`, now return `Result<T, E>`
merge object_init error and object item error
before return `Result<T, E>`, now return `Option<T>`
通过实现 InitObject trait 来初始化 object 类型 (自定义类型)
when OssError code is SignatureDoesNotMatch ,show expect sign string
当多次写入少量数据,不符合分片的最小数量时,调用 oss 接口会导致报错
tu6ge
added a commit
that referenced
this pull request
Aug 11, 2023
* feat(decode)!: change init object fn * todo * feat(error): OssError add more info when OssError code is SignatureDoesNotMatch ,show expect sign string * feat(io): support write * feat: blocking support * feat: blocking read * feat: 允许读取的数据于目标数组长度不一致 * feat: 分离 Rc 和内部数据 * feat: support Arc Object Content * feat: 解决多次写入少量数据导致oss错误的问题 当多次写入少量数据,不符合分片的最小数量时,调用 oss 接口会导致报错 * refactor * feat: 交互 arc 与 rc 的位置 * docs(io) * docs(io) * style * chore: default close blocking * fix * style * feat(io): change seek * feat(io): change error type * style * feat(bucket)!: change base_bucket_info * test(io) * test(doc): remove deprecated * test(io) * test(io) * test(io) * style(io): clippy * chore: support more derive * refactor * docs
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
No description provided.